Describes a list of dashboards associated to an owner. Currently, teams own dashboard groups.

interface DashboardGroup {
    _links?: any;
    dashboardEntries?: DashboardGroupEntry[];
    permission?: GroupMemberPermission;
    teamDashboardPermission?: TeamDashboardPermission;
    url?: string;
}

Properties

_links?: any
dashboardEntries?: DashboardGroupEntry[]

A list of Dashboards held by the Dashboard Group

Deprecated: The old permission model describing the level of permissions for the current team. Pre-M125.

teamDashboardPermission?: TeamDashboardPermission

A permissions bit mask describing the security permissions of the current team for dashboards. When this permission is the value None, use GroupMemberPermission. Permissions are evaluated based on the presence of a value other than None, else the GroupMemberPermission will be saved.

url?: string