@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
44 lines (43 loc) • 1.77 kB
TypeScript
export declare class ThreeDSRequestorPriorAuthenticationInfo {
/**
* Data that documents and supports a specific authentication process. Maximum length: 2048 bytes.
*/
"threeDSReqPriorAuthData"?: string;
/**
* Mechanism used by the Cardholder to previously authenticate to the 3DS Requestor. Allowed values: * **01** — Frictionless authentication occurred by ACS. * **02** — Cardholder challenge occurred by ACS. * **03** — AVS verified. * **04** — Other issuer methods.
*/
"threeDSReqPriorAuthMethod"?: ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum;
/**
* Date and time in UTC of the prior cardholder authentication. Format: YYYYMMDDHHMM
*/
"threeDSReqPriorAuthTimestamp"?: string;
/**
* This data element provides additional information to the ACS to determine the best approach for handing a request. This data element contains an ACS Transaction ID for a prior authenticated transaction. For example, the first recurring transaction that was authenticated with the cardholder. Length: 30 characters.
*/
"threeDSReqPriorRef"?: string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}
export declare namespace ThreeDSRequestorPriorAuthenticationInfo {
enum ThreeDSReqPriorAuthMethodEnum {
_01 = "01",
_02 = "02",
_03 = "03",
_04 = "04"
}
}