/** * 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. */ /** * Properties that identify a workflow. * @export * @interface WorkflowId */ export interface WorkflowId { /** * Whether the workflow is in the draft state. * @type {boolean} * @memberof WorkflowId */ draft: boolean; /** * The name of the workflow. * @type {string} * @memberof WorkflowId */ name: string; } export declare function WorkflowIdFromJSON(json: any): WorkflowId; export declare function WorkflowIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowId; export declare function WorkflowIdToJSON(value?: WorkflowId): any;