/** * 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 { CustomFieldReplacement } from './'; /** * * @export * @interface DeleteAndReplaceVersionBean */ export interface DeleteAndReplaceVersionBean { /** * An array of custom field IDs (`customFieldId`) and version IDs (`moveTo`) to update when the fields contain the deleted version. * @type {Array} * @memberof DeleteAndReplaceVersionBean */ customFieldReplacementList?: Array; /** * The ID of the version to update `fixVersion` to when the field contains the deleted version. * @type {number} * @memberof DeleteAndReplaceVersionBean */ moveFixIssuesTo?: number; /** * The ID of the version to update `affectedVersion` to when the field contains the deleted version. * @type {number} * @memberof DeleteAndReplaceVersionBean */ moveAffectedIssuesTo?: number; } export declare function DeleteAndReplaceVersionBeanFromJSON(json: any): DeleteAndReplaceVersionBean; export declare function DeleteAndReplaceVersionBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteAndReplaceVersionBean; export declare function DeleteAndReplaceVersionBeanToJSON(value?: DeleteAndReplaceVersionBean): any;