UNPKG

wallee

Version:
27 lines (26 loc) 657 B
declare class AbstractAccountUpdate { /** * The date and time when the object was last modified. */ 'lastModifiedDate'?: Date; /** * The name used to identify the account. */ 'name'?: string; /** * The number of sub-accounts that can be created within this account. */ 'subaccountLimit'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { AbstractAccountUpdate };