Details of a dashboard.

interface Dashboard {
    automaticRefreshMs?: number;
    description?: string;
    editPermissions?: Version3.Version3Models.SharePermission[];
    id: string;
    isFavourite?: boolean;
    isWritable?: boolean;
    name?: string;
    owner?: Version3.Version3Models.DashboardUser;
    popularity?: number;
    rank?: number;
    self?: string;
    sharePermissions?: Version3.Version3Models.SharePermission[];
    systemDashboard?: boolean;
    view?: string;
}

Properties

automaticRefreshMs?: number

The automatic refresh interval for the dashboard in milliseconds.

description?: string

The details of any edit share permissions for the dashboard.

id: string

The ID of the dashboard.

isFavourite?: boolean

Whether the dashboard is selected as a favorite by the user.

isWritable?: boolean

Whether the current user has permission to edit the dashboard.

name?: string

The name of the dashboard.

popularity?: number

The number of users who have this dashboard as a favorite.

rank?: number

The rank of this dashboard.

self?: string

The URL of these dashboard details.

The details of any view share permissions for the dashboard.

systemDashboard?: boolean

Whether the current dashboard is system dashboard.

view?: string

The URL of the dashboard.