@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
32 lines (31 loc) • 942 B
TypeScript
export declare class RiskData {
/**
* Contains client-side data, like the device fingerprint, cookies, and specific browser settings.
*/
'clientData'?: string;
/**
* Any custom fields used as part of the input to configured risk rules.
*/
'customFields'?: {
[]: string;
};
/**
* An integer value that is added to the normal fraud score. The value can be either positive or negative.
*/
'fraudOffset'?: number;
/**
* The risk profile to assign to this payment. When left empty, the merchant-level account\'s default risk profile will be applied.
*/
'profileReference'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}