interface TimelineTeamData {
    backlog?: BacklogLevel;
    fieldReferenceNames?: string[];
    id?: string;
    isExpanded?: boolean;
    iterations?: TimelineTeamIteration[];
    name?: string;
    orderByField?: string;
    partiallyPagedFieldReferenceNames?: string[];
    partiallyPagedWorkItems?: any[][];
    projectId?: string;
    rollupWorkItemTypes?: string[];
    status?: TimelineTeamStatus;
    teamFieldDefaultValue?: string;
    teamFieldName?: string;
    teamFieldValues?: TeamFieldValue[];
    workItems?: any[][];
    workItemTypeColors?: WorkItemColor[];
}

Properties

backlog?: BacklogLevel

Backlog matching the mapped backlog associated with this team.

fieldReferenceNames?: string[]

The field reference names of the work item data

id?: string

The id of the team

isExpanded?: boolean

Was iteration and work item data retrieved for this team. Teams with IsExpanded false have not had their iteration, work item, and field related data queried and will never contain this data. If true then these items are queried and, if there are items in the queried range, there will be data.

iterations?: TimelineTeamIteration[]

The iteration data, including the work items, in the queried date range.

name?: string

The name of the team

orderByField?: string

The order by field name of this team

partiallyPagedFieldReferenceNames?: string[]

The field reference names of the partially paged work items, such as ID, WorkItemType

partiallyPagedWorkItems?: any[][]
projectId?: string

The project id the team belongs team

rollupWorkItemTypes?: string[]

Work item types for which we will collect roll up data on the client side

Status for this team.

teamFieldDefaultValue?: string

The team field default value

teamFieldName?: string

The team field name of this team

teamFieldValues?: TeamFieldValue[]

The team field values

workItems?: any[][]

Work items associated with the team that are not under any of the team's iterations

workItemTypeColors?: WorkItemColor[]

Colors for the work item types.