/** * 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. */ import { Scope } from './'; /** * Details about a workflow. * @export * @interface DeprecatedWorkflow */ export interface DeprecatedWorkflow { /** * The scope where this workflow applies * @type {Scope} * @memberof DeprecatedWorkflow */ readonly scope?: Scope; /** * The datetime the workflow was last modified. * @type {string} * @memberof DeprecatedWorkflow */ readonly lastModifiedDate?: string; /** * This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details. * @type {string} * @memberof DeprecatedWorkflow */ readonly lastModifiedUser?: string; /** * The description of the workflow. * @type {string} * @memberof DeprecatedWorkflow */ readonly description?: string; /** * The name of the workflow. * @type {string} * @memberof DeprecatedWorkflow */ readonly name?: string; /** * * @type {boolean} * @memberof DeprecatedWorkflow */ _default?: boolean; /** * The number of steps included in the workflow. * @type {number} * @memberof DeprecatedWorkflow */ readonly steps?: number; /** * The account ID of the user that last modified the workflow. * @type {string} * @memberof DeprecatedWorkflow */ readonly lastModifiedUserAccountId?: string; } export declare function DeprecatedWorkflowFromJSON(json: any): DeprecatedWorkflow; export declare function DeprecatedWorkflowFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeprecatedWorkflow; export declare function DeprecatedWorkflowToJSON(value?: DeprecatedWorkflow): any;