/** * 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 { IssueTransition } from './'; /** * List of issue transitions. * @export * @interface Transitions */ export interface Transitions { /** * Expand options that include additional transitions details in the response. * @type {string} * @memberof Transitions */ readonly expand?: string; /** * List of issue transitions. * @type {Array} * @memberof Transitions */ readonly transitions?: Array; } export declare function TransitionsFromJSON(json: any): Transitions; export declare function TransitionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Transitions; export declare function TransitionsToJSON(value?: Transitions): any;