/** * An AvaTax account. * @export * @class AccountMigrationStatusModel */ export declare class AccountMigrationStatusModel { /** * @type {number} * @memberof AccountMigrationStatusModel */ accountId: number; /** * @type {string} * @memberof AccountMigrationStatusModel */ accountName?: string | undefined; /** * @type {Date} * @memberof AccountMigrationStatusModel */ modifiedDate?: Date | undefined; /** * @type {number} * @memberof AccountMigrationStatusModel */ modifiedUserId?: number | undefined; /** * @type {number} * @memberof AccountMigrationStatusModel */ accountMigrationStatusId?: number | undefined; }