/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { CustomFieldReplacement } from "../definitions/CustomFieldReplacement"; export interface DeleteAndReplaceVersionBean { /** * An array of custom field IDs (`customFieldId`) and version IDs (`moveTo`) to update when the fields contain the deleted version. */ customFieldReplacementList?: Array; /** * The ID of the version to update `affectedVersion` to when the field contains the deleted version. */ moveAffectedIssuesTo?: number; /** * The ID of the version to update `fixVersion` to when the field contains the deleted version. */ moveFixIssuesTo?: number; } //# sourceMappingURL=DeleteAndReplaceVersionBean.d.ts.map