/** * 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 { WorkflowTransitionRule } from './'; /** * A collection of transition rules. * @export * @interface WorkflowRules */ export interface WorkflowRules { /** * The workflow validators. * @type {Array} * @memberof WorkflowRules */ validators: Array; /** * The workflow conditions. * @type {Array} * @memberof WorkflowRules */ conditions: Array; /** * The workflow post functions. * @type {Array} * @memberof WorkflowRules */ postFunctions: Array; } export declare function WorkflowRulesFromJSON(json: any): WorkflowRules; export declare function WorkflowRulesFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowRules; export declare function WorkflowRulesToJSON(value?: WorkflowRules): any;