UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

25 lines 890 B
import { PaymentAcceptanceBrowserData } from './paymentAcceptanceBrowserData'; import { PaymentAcceptanceLocationData } from './paymentAcceptanceLocationData'; import { PaymentAcceptanceMobileData } from './paymentAcceptanceMobileData'; export interface PaymentAcceptanceDeviceData { accept_header?: string; browser?: PaymentAcceptanceBrowserData; device_id?: string; ip_address?: string; language?: string; location?: PaymentAcceptanceLocationData; mobile?: PaymentAcceptanceMobileData; screen_color_depth?: number; screen_height?: number; screen_width?: number; timezone?: string; } export declare namespace PaymentAcceptanceDeviceData { const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=paymentAcceptanceDeviceData.d.ts.map