/** * 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 { RuleConfiguration, WorkflowTransition } from './'; /** * A workflow transition rule. * @export * @interface ConnectWorkflowTransitionRule */ export interface ConnectWorkflowTransitionRule { /** * The ID of the transition rule. * @type {string} * @memberof ConnectWorkflowTransitionRule */ id: string; /** * * @type {WorkflowTransition} * @memberof ConnectWorkflowTransitionRule */ readonly transition?: WorkflowTransition; /** * The key of the rule, as defined in the Connect app descriptor. * @type {string} * @memberof ConnectWorkflowTransitionRule */ readonly key: string; /** * * @type {RuleConfiguration} * @memberof ConnectWorkflowTransitionRule */ _configuration?: RuleConfiguration; } export declare function ConnectWorkflowTransitionRuleFromJSON(json: any): ConnectWorkflowTransitionRule; export declare function ConnectWorkflowTransitionRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectWorkflowTransitionRule; export declare function ConnectWorkflowTransitionRuleToJSON(value?: ConnectWorkflowTransitionRule): any;