airwallex-payment-elements
Version:
> **IMPORTANT NOTICE**: This package is being superseded by [Airwallex.js](https://www.airwallex.com/docs/developer-tools__sdks__airwallex.js__upgrade-to-airwallex.js__upgrade-from-payment-elements-sdk). We strongly recommend upgrading to Airwallex.js for
24 lines (22 loc) • 552 B
TypeScript
/**
* The request payload for getDeviceFingerprint
*
*/
export interface GetDeviceFingerprintRequest {
/**
* The intent id that you would like to pay
*/
intent_id?: string;
/**
* The airwalllex env that you would like to integrate. for example: 'staging' | 'demo' | 'prod'
*/
env?: string;
/**
* Will it owerride the previous risk js, default true
*/
overrideScript?: boolean;
}
/**
* Method to collect device fingerprint
*/
export declare const getDeviceFingerprint: (props: GetDeviceFingerprintRequest) => string;