UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

27 lines 988 B
import { LivenessDTO } from './livenessDTO'; import { RfiRequestItemContent } from './rfiRequestItemContent'; import { RfiRequestItemResponseDto } from './rfiRequestItemResponseDto'; import { RfiRequestItemSourceDto } from './rfiRequestItemSourceDto'; import { RfiSupportingDocDto } from './rfiSupportingDocDto'; import { UploadedOrderDTO } from './uploadedOrderDTO'; export interface RfiRequestItemDto { answer?: RfiRequestItemResponseDto; attachments?: Array<RfiSupportingDocDto>; comment?: string; description?: RfiRequestItemContent; id?: string; key?: string; liveness?: LivenessDTO; sources?: Array<RfiRequestItemSourceDto>; title?: RfiRequestItemContent; uploaded_orders?: Array<UploadedOrderDTO>; } export declare namespace RfiRequestItemDto { const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=rfiRequestItemDto.d.ts.map