/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { StatusMigration } from "../definitions/StatusMigration"; export interface StatusMappingDTO { /** * The issue type for the status mapping. */ issueTypeId: string; /** * The project for the status mapping. */ projectId: string; /** * The list of old and new status ID mappings for the specified project and issue type. */ statusMigrations: Array; [x: string]: any; } //# sourceMappingURL=StatusMappingDTO.d.ts.map