/** * 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 default workflow. * @export * @interface DefaultWorkflow */ export interface DefaultWorkflow { /** * The name of the workflow to set as the default workflow. * @type {string} * @memberof DefaultWorkflow */ 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 default workflow. Defaults to `false`. * @type {boolean} * @memberof DefaultWorkflow */ updateDraftIfNeeded?: boolean; } export declare function DefaultWorkflowFromJSON(json: any): DefaultWorkflow; export declare function DefaultWorkflowFromJSONTyped(json: any, ignoreDiscriminator: boolean): DefaultWorkflow; export declare function DefaultWorkflowToJSON(value?: DefaultWorkflow): any;