Details of a dashboard.

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

Properties

automaticRefreshMs?: number

The automatic refresh interval for the dashboard in milliseconds.

description?: string
editPermissions?: SharePermission[]

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.

owner?: UserBean

The owner 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.

sharePermissions?: SharePermission[]

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.