@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
15 lines (14 loc) • 545 B
text/typescript
export interface CreatePlanOnlyTeamRequest {
/** The capacity for the plan-only team. */
capacity?: number;
/** The ID of the issue source for the plan-only team. */
issueSourceId?: number;
/** The account IDs of the plan-only team members. */
memberAccountIds?: string[];
/** The plan-only team name. */
name: string;
/** The planning style for the plan-only team. This must be "Scrum" or "Kanban". */
planningStyle: 'Scrum' | 'Kanban' | string;
/** The sprint length for the plan-only team. */
sprintLength?: number;
}