/** * 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 an issue type and a workflow. * @export * @interface IssueTypeWorkflowMapping */ export interface IssueTypeWorkflowMapping { /** * The name of the workflow. * @type {string} * @memberof IssueTypeWorkflowMapping */ workflow?: string; /** * Set to true to create or update the draft of a workflow scheme and update the mapping in the draft, when the workflow scheme cannot be edited. Defaults to `false`. Only applicable when updating the workflow-issue types mapping. * @type {boolean} * @memberof IssueTypeWorkflowMapping */ updateDraftIfNeeded?: boolean; /** * The ID of the issue type. Not required if updating the issue type-workflow mapping. * @type {string} * @memberof IssueTypeWorkflowMapping */ issueType?: string; } export declare function IssueTypeWorkflowMappingFromJSON(json: any): IssueTypeWorkflowMapping; export declare function IssueTypeWorkflowMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueTypeWorkflowMapping; export declare function IssueTypeWorkflowMappingToJSON(value?: IssueTypeWorkflowMapping): any;