/** * 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 MoveFieldBean */ export interface MoveFieldBean { /** * The named position to which the screen tab field should be moved. Required if `after` isn\'t provided. * @type {string} * @memberof MoveFieldBean */ position?: MoveFieldBeanPositionEnum; /** * The ID of the screen tab field after which to place the moved screen tab field. Required if `position` isn\'t provided. * @type {string} * @memberof MoveFieldBean */ after?: string; } export declare function MoveFieldBeanFromJSON(json: any): MoveFieldBean; export declare function MoveFieldBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoveFieldBean; export declare function MoveFieldBeanToJSON(value?: MoveFieldBean): any; /** * @export * @enum {string} */ export declare enum MoveFieldBeanPositionEnum { Earlier = "Earlier", Later = "Later", First = "First", Last = "Last" }