@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
40 lines (39 loc) • 1.27 kB
TypeScript
import { MigratedAccounts } from './migratedAccounts';
import { MigratedStores } from './migratedStores';
export declare class MigrationData {
/**
* The unique identifier of the account holder in the balance platform.
*/
'accountHolderId'?: string;
/**
* The unique identifier of the balance platfrom to which the account holder was migrated.
*/
'balancePlatform'?: string;
/**
* Set to **true** if the account holder has been migrated.
*/
'migrated'?: boolean;
/**
* Contains the mapping of virtual account codes (classic integration) to the balance account codes (balance platform) associated with the migrated account holder.
*/
'migratedAccounts'?: Array<MigratedAccounts>;
/**
* Contains the mapping of business lines and stores associated with the migrated account holder.
*/
'migratedStores'?: Array<MigratedStores>;
/**
* The date when account holder was migrated.
*/
'migrationDate'?: Date;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}