pub struct TimelineTeamData {Show 17 fields
pub backlog: Option<BacklogLevel>,
pub field_reference_names: Vec<String>,
pub id: Option<String>,
pub is_expanded: Option<bool>,
pub iterations: Vec<TimelineTeamIteration>,
pub name: Option<String>,
pub order_by_field: Option<String>,
pub partially_paged_field_reference_names: Vec<String>,
pub partially_paged_work_items: Vec<Vec<Value>>,
pub project_id: Option<String>,
pub rollup_work_item_types: Vec<String>,
pub status: Option<TimelineTeamStatus>,
pub team_field_default_value: Option<String>,
pub team_field_name: Option<String>,
pub team_field_values: Vec<TeamFieldValue>,
pub work_items: Vec<Vec<Value>>,
pub work_item_type_colors: Vec<WorkItemColor>,
}Fields§
§backlog: Option<BacklogLevel>Contract representing a backlog level
field_reference_names: Vec<String>The field reference names of the work item data
id: Option<String>The id of the team
is_expanded: Option<bool>Was iteration and work item data retrieved for this team.
iterations: Vec<TimelineTeamIteration>The iteration data, including the work items, in the queried date range.
name: Option<String>The name of the team
order_by_field: Option<String>The order by field name of this team
partially_paged_field_reference_names: Vec<String>The field reference names of the partially paged work items, such as ID, WorkItemType
partially_paged_work_items: Vec<Vec<Value>>§project_id: Option<String>The project id the team belongs team
rollup_work_item_types: Vec<String>Work item types for which we will collect roll up data on the client side
status: Option<TimelineTeamStatus>§team_field_default_value: Option<String>The team field default value
team_field_name: Option<String>The team field name of this team
team_field_values: Vec<TeamFieldValue>The team field values
work_items: Vec<Vec<Value>>Work items associated with the team that are not under any of the team’s iterations
work_item_type_colors: Vec<WorkItemColor>Colors for the work item types.
Implementations§
Trait Implementations§
Source§impl Clone for TimelineTeamData
impl Clone for TimelineTeamData
Source§fn clone(&self) -> TimelineTeamData
fn clone(&self) -> TimelineTeamData
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more