/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { WorkflowRuleConfiguration } from "../definitions/WorkflowRuleConfiguration"; import { ConditionGroupUpdate } from "../definitions/ConditionGroupUpdate"; import { WorkflowTransitionLinks } from "../definitions/WorkflowTransitionLinks"; import { WorkflowTrigger } from "../definitions/WorkflowTrigger"; export interface TransitionUpdateDTO { /** * The post-functions of the transition. */ actions?: Array; conditions?: ConditionGroupUpdate; /** * The custom event ID of the transition. */ customIssueEventId?: string; /** * The description of the transition. */ description?: string; /** * The ID of the transition. */ id?: string; /** * The statuses the transition can start from, and the mapping of ports between the statuses. */ links?: Array; /** * The name of the transition. */ name?: string; /** * The properties of the transition. */ properties?: { [x: string]: string; }; /** * The status the transition goes to. */ toStatusReference?: string; transitionScreen?: WorkflowRuleConfiguration; /** * The triggers of the transition. */ triggers?: Array; /** * The transition type. */ type?: "INITIAL" | "GLOBAL" | "DIRECTED"; /** * The validators of the transition. */ validators?: Array; [x: string]: any; } //# sourceMappingURL=TransitionUpdateDTO.d.ts.map