UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

24 lines 786 B
import { PaymentMethodItemDTO } from './paymentMethodItemDTO'; export interface TransferMethodFieldDto { _default?: string; description?: string; example?: string; key?: string; label?: string; placeholder?: string; refresh?: boolean; tip?: string; type?: TransferMethodFieldDto.TypeEnum; options?: Array<PaymentMethodItemDTO>; } export declare namespace TransferMethodFieldDto { const validTypeEnum: readonly ["INPUT", "SELECT", "RADIO", "TRANSFER_METHOD", "DYNAMIC_SELECT"]; type TypeEnum = (typeof validTypeEnum)[number] | 'UNKNOWN'; const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=transferMethodFieldDto.d.ts.map