/* tslint:disable */ /* eslint-disable */ /** * EMIL Tenant Service * The EMIL TenantService API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * 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 OrganizationMigrationClass */ export interface OrganizationMigrationClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof OrganizationMigrationClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof OrganizationMigrationClass */ 'code': string; /** * Source tenant identifier * @type {string} * @memberof OrganizationMigrationClass */ 'source': string; /** * Target tenant identifier * @type {string} * @memberof OrganizationMigrationClass */ 'target': string; /** * Status of the organization migration * @type {string} * @memberof OrganizationMigrationClass */ 'status': OrganizationMigrationClassStatusEnum; /** * Time at which the object was created. * @type {string} * @memberof OrganizationMigrationClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof OrganizationMigrationClass */ 'updatedAt': string; /** * Identifier of the user who created the record. * @type {string} * @memberof OrganizationMigrationClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof OrganizationMigrationClass */ 'updatedBy': string; } export const OrganizationMigrationClassStatusEnum = { Queued: 'queued', InProgress: 'in_progress', Completed: 'completed', Failed: 'failed', Reverting: 'reverting', Reverted: 'reverted' } as const; export type OrganizationMigrationClassStatusEnum = typeof OrganizationMigrationClassStatusEnum[keyof typeof OrganizationMigrationClassStatusEnum];