Struct azure_devops_rust_api::dashboard::models::Dashboard
source · pub struct Dashboard {Show 15 fields
pub links: Option<ReferenceLinks>,
pub dashboard_scope: Option<DashboardScope>,
pub description: Option<String>,
pub e_tag: Option<String>,
pub group_id: Option<String>,
pub id: Option<String>,
pub last_accessed_date: Option<OffsetDateTime>,
pub modified_by: Option<String>,
pub modified_date: Option<OffsetDateTime>,
pub name: Option<String>,
pub owner_id: Option<String>,
pub position: Option<i32>,
pub refresh_interval: Option<i32>,
pub url: Option<String>,
pub widgets: Vec<Widget>,
}
Expand description
Model of a Dashboard.
Fields§
§links: Option<ReferenceLinks>
The class to represent a collection of REST reference links.
dashboard_scope: Option<DashboardScope>
Entity to which the dashboard is scoped.
description: Option<String>
Description of the dashboard.
e_tag: Option<String>
Server defined version tracking value, used for edit collision detection.
group_id: Option<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: Option<String>
ID of the Dashboard. Provided by service at creation time.
last_accessed_date: Option<OffsetDateTime>
Dashboard Last Accessed Date.
modified_by: Option<String>
Id of the person who modified Dashboard.
modified_date: Option<OffsetDateTime>
Dashboard’s last modified date.
name: Option<String>
Name of the Dashboard.
owner_id: Option<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: Option<i32>
Position of the dashboard, within a dashboard group. If unset at creation time, position is decided by the service.
refresh_interval: Option<i32>
Interval for client to automatically refresh the dashboard. Expressed in minutes.
url: Option<String>
§widgets: Vec<Widget>
The set of Widgets on the dashboard.