/** * 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. */ /** * * @export * @interface VersionMoveBean */ export interface VersionMoveBean { /** * An absolute position in which to place the moved version. Cannot be used with `after`. * @type {string} * @memberof VersionMoveBean */ position?: VersionMoveBeanPositionEnum; /** * The URL (self link) of the version after which to place the moved version. Cannot be used with `position`. * @type {string} * @memberof VersionMoveBean */ after?: string; } export declare function VersionMoveBeanFromJSON(json: any): VersionMoveBean; export declare function VersionMoveBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): VersionMoveBean; export declare function VersionMoveBeanToJSON(value?: VersionMoveBean): any; /** * @export * @enum {string} */ export declare enum VersionMoveBeanPositionEnum { Earlier = "Earlier", Later = "Later", First = "First", Last = "Last" }