/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Details about the mapping between issue types and a workflow. * @export * @interface IssueTypesWorkflowMapping */ export interface IssueTypesWorkflowMapping { /** * The list of issue type IDs. * @type {Array} * @memberof IssueTypesWorkflowMapping */ issueTypes?: Array; /** * Indicates whether the workflow is the default workflow for the workflow scheme. * @type {boolean} * @memberof IssueTypesWorkflowMapping */ defaultMapping?: boolean; /** * The name of the workflow. Optional if updating the workflow-issue types mapping. * @type {string} * @memberof IssueTypesWorkflowMapping */ workflow?: string; /** * Indicates whether a draft workflow scheme is created or updated when updating an active workflow scheme. The draft is updated with the new workflow-issue types mapping. Defaults to `false`. * @type {boolean} * @memberof IssueTypesWorkflowMapping */ updateDraftIfNeeded?: boolean; } export declare function IssueTypesWorkflowMappingFromJSON(json: any): IssueTypesWorkflowMapping; export declare function IssueTypesWorkflowMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueTypesWorkflowMapping; export declare function IssueTypesWorkflowMappingToJSON(value?: IssueTypesWorkflowMapping): any;