/** * 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. */ /** * A workflow transition rule. * @export * @interface WorkflowTransitionRule */ export interface WorkflowTransitionRule { /** * The type of the transition rule. * @type {string} * @memberof WorkflowTransitionRule */ type: string; /** * The configuration of the transition rule. This is currently returned only for some of the rule types. Availability of this property is subject to change. * @type {object} * @memberof WorkflowTransitionRule */ _configuration?: object; } export declare function WorkflowTransitionRuleFromJSON(json: any): WorkflowTransitionRule; export declare function WorkflowTransitionRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowTransitionRule; export declare function WorkflowTransitionRuleToJSON(value?: WorkflowTransitionRule): any;