Response from RestAPI when saving and editing DashboardGroupEntry

interface DashboardGroupEntryResponse {
    _links?: any;
    dashboardScope?: DashboardScope;
    description?: string;
    eTag?: string;
    globalParametersConfig?: string;
    groupId?: string;
    id?: string;
    lastAccessedDate?: Date;
    modifiedBy?: string;
    modifiedDate?: Date;
    name?: string;
    ownerId?: string;
    position?: number;
    refreshInterval?: number;
    url?: string;
    widgets?: Widget[];
}

Hierarchy (View Summary)

Properties

_links?: any
dashboardScope?: DashboardScope

Entity to which the dashboard is scoped.

description?: string

Description of the dashboard.

eTag?: string

Server defined version tracking value, used for edit collision detection.

globalParametersConfig?: string

Dashboard Global Parameters Config

groupId?: string

ID of the group for a dashboard. For team-scoped dashboards, this is the unique identifier for the team associated with the dashboard. For project-scoped dashboards this property is empty.

id?: string

ID of the Dashboard. Provided by service at creation time.

lastAccessedDate?: Date

Dashboard Last Accessed Date.

modifiedBy?: string

Id of the person who modified Dashboard.

modifiedDate?: Date

Dashboard's last modified date.

name?: string

Name of the Dashboard.

ownerId?: string

ID of the owner for a dashboard. For team-scoped dashboards, this is the unique identifier for the team associated with the dashboard. For project-scoped dashboards, this is the unique identifier for the user identity associated with the dashboard.

position?: number

Position of the dashboard, within a dashboard group. If unset at creation time, position is decided by the service.

refreshInterval?: number

Interval for client to automatically refresh the dashboard. Expressed in minutes.

url?: string
widgets?: Widget[]

The set of Widgets on the dashboard.