UNPKG

@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.

11 lines (10 loc) 327 B
/** An associated workflow scheme and project. */ export interface WorkflowSchemeProjectAssociation { /** * The ID of the workflow scheme. If the workflow scheme ID is `null`, the operation assigns the default workflow * scheme. */ workflowSchemeId?: string; /** The ID of the project. */ projectId: string; }