/** * 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 { ConnectWorkflowTransitionRule, WorkflowId } from './'; /** * A workflow with transition rules. * @export * @interface WorkflowTransitionRules */ export interface WorkflowTransitionRules { /** * The list of post functions within the workflow. * @type {Array} * @memberof WorkflowTransitionRules */ postFunctions?: Array; /** * * @type {WorkflowId} * @memberof WorkflowTransitionRules */ workflowId?: WorkflowId; /** * The list of conditions within the workflow. * @type {Array} * @memberof WorkflowTransitionRules */ conditions?: Array; /** * The list of validators within the workflow. * @type {Array} * @memberof WorkflowTransitionRules */ validators?: Array; } export declare function WorkflowTransitionRulesFromJSON(json: any): WorkflowTransitionRules; export declare function WorkflowTransitionRulesFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowTransitionRules; export declare function WorkflowTransitionRulesToJSON(value?: WorkflowTransitionRules): any;