Interface AdminTenantBatchMigrateSuccessEvent

interface AdminTenantBatchMigrateSuccessEventSanitised {
    category: "admin-tenant";
    data: {
        environmentId: string;
        errorCount: number;
        successCount: number;
    };
    id: string;
    requestId: string;
    timestamp: number;
    type: string;
    userId: string;
    version: "1";
}

Properties

category: "admin-tenant"
data: {
    environmentId: string;
    errorCount: number;
    successCount: number;
}

Type declaration

  • environmentId: string
  • errorCount: number
  • successCount: number
id: string
requestId: string
timestamp: number
type: string
userId: string
version: "1"