UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

22 lines 680 B
export interface BaseFormSchemaFieldDto { _default?: string; description?: string; example?: string; key?: string; label?: string; placeholder?: string; refresh?: boolean; tip?: string; type?: BaseFormSchemaFieldDto.TypeEnum; } export declare namespace BaseFormSchemaFieldDto { 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=baseFormSchemaFieldDto.d.ts.map