/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { WorkflowRuleConfigurationAsResponse } from "../definitions/WorkflowRuleConfigurationAsResponse"; import { ConditionGroupConfigurationAsResponse } from "../definitions/ConditionGroupConfigurationAsResponse"; import { WorkflowTransitionLinksAsResponse } from "../definitions/WorkflowTransitionLinksAsResponse"; import { WorkflowTriggerAsResponse } from "../definitions/WorkflowTriggerAsResponse"; export interface WorkflowTransitionsAsResponse { /** * The post-functions of the transition. */ actions?: Array; conditions?: ConditionGroupConfigurationAsResponse; /** * 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?: WorkflowRuleConfigurationAsResponse; /** * The triggers of the transition. */ triggers?: Array; /** * The transition type. */ type?: "INITIAL" | "GLOBAL" | "DIRECTED"; /** * The validators of the transition. */ validators?: Array; } //# sourceMappingURL=WorkflowTransitionsAsResponse.d.ts.map