/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface WorkflowTransitionLinksAsResponse { /** * The port that the transition starts from. */ fromPort?: number; /** * The status that the transition starts from. */ fromStatusReference?: string; /** * The port that the transition goes to. */ toPort?: number; } //# sourceMappingURL=WorkflowTransitionLinksAsResponse.d.ts.map