UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

23 lines 878 B
import { RfiAddressDto } from './rfiAddressDto'; import { RfiFileIdDto } from './rfiFileIdDto'; import { RfiIdentityDocumentDto } from './rfiIdentityDocumentDto'; export interface RfiRequestItemResponseDto { address?: RfiAddressDto; attachments?: Array<RfiFileIdDto>; comment?: string; confirmed?: boolean; identity_document?: RfiIdentityDocumentDto; text?: string; type?: RfiRequestItemResponseDto.TypeEnum; } export declare namespace RfiRequestItemResponseDto { const validTypeEnum: readonly ["TEXT", "ATTACHMENT", "IDENTITY_DOCUMENT", "CONFIRMATION", "LIVENESS", "ADDRESS"]; type TypeEnum = (typeof validTypeEnum)[number] | 'UNKNOWN'; const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=rfiRequestItemResponseDto.d.ts.map