UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

16 lines 523 B
export interface BusinessIdentifierApiDto { country_code?: string; number?: string; type?: BusinessIdentifierApiDto.TypeEnum; } export declare namespace BusinessIdentifierApiDto { const validTypeEnum: readonly ["BRN", "EIN", "SSN", "VAT"]; type TypeEnum = (typeof validTypeEnum)[number] | 'UNKNOWN'; const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=businessIdentifierApiDto.d.ts.map