/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { CreateWorkflowTransitionRulesDetails } from "../definitions/CreateWorkflowTransitionRulesDetails"; import { CreateWorkflowTransitionScreenDetails } from "../definitions/CreateWorkflowTransitionScreenDetails"; export interface CreateWorkflowTransitionDetails { /** * The description of the transition. The maximum length is 1000 characters. */ description?: string; /** * The statuses the transition can start from. */ from?: Array; /** * The name of the transition. The maximum length is 60 characters. */ name: string; /** * The properties of the transition. */ properties?: { [x: string]: string; }; /** * The rules of the transition. */ rules?: CreateWorkflowTransitionRulesDetails; /** * The screen of the transition. */ screen?: CreateWorkflowTransitionScreenDetails; /** * The status the transition goes to. */ to: string; /** * The type of the transition. */ type: "global" | "initial" | "directed"; } //# sourceMappingURL=CreateWorkflowTransitionDetails.d.ts.map