/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface StatusMigration { /** * The new status ID. */ newStatusReference: string; /** * The old status ID. */ oldStatusReference: string; [x: string]: any; } //# sourceMappingURL=StatusMigration.d.ts.map