/** * 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 published workflow. * @export * @interface PublishedWorkflowId */ export interface PublishedWorkflowId { /** * The name of the workflow. * @type {string} * @memberof PublishedWorkflowId */ name: string; } export declare function PublishedWorkflowIdFromJSON(json: any): PublishedWorkflowId; export declare function PublishedWorkflowIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublishedWorkflowId; export declare function PublishedWorkflowIdToJSON(value?: PublishedWorkflowId): any;