DashboardWorkerGet: {
    autoRefresh?: number;
    fitToScreen: boolean;
    items: {
        scriptId: string;
        type: DashboardItemType;
    }[];
    name: string;
    retrievals: string[];
}

Type declaration

  • OptionalautoRefresh?: number

    How frequently the dashboard should automatically refresh, in minutes. If undefined, the dashboard will never automatically refresh.

  • fitToScreen: boolean

    When set, charts will automatically shrink to fit onto a single screen without scrolling.

  • items: {
        scriptId: string;
        type: DashboardItemType;
    }[]

    The script id and type of all the items on this dashboard.

  • name: string

    The dashboard name.

  • retrievals: string[]

    The script ids of all the retrievals on this dashboard.