UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

16 lines 523 B
export interface ShareHoldingDTO { entity_type?: ShareHoldingDTO.EntityTypeEnum; name?: string; share_holding_percentage?: string; } export declare namespace ShareHoldingDTO { const validEntityTypeEnum: readonly ["COMPANY", "PERSONAL"]; type EntityTypeEnum = (typeof validEntityTypeEnum)[number] | 'UNKNOWN'; const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=shareHoldingDTO.d.ts.map