interface GetPlanOnlyTeamResponse {
    capacity?: number;
    id: number;
    issueSourceId?: number;
    memberAccountIds?: string[];
    name: string;
    planningStyle: "Scrum" | "Kanban";
    sprintLength?: number;
}

Properties

capacity?: number

The capacity for the plan-only team.

id: number

The plan-only team ID.

issueSourceId?: number

The ID of the issue source for the plan-only team.

memberAccountIds?: string[]

The account IDs of the plan-only team members.

name: string

The plan-only team name.

planningStyle: "Scrum" | "Kanban"

The planning style for the plan-only team. This is "Scrum" or "Kanban".

sprintLength?: number

The sprint length for the plan-only team.