/**
* Lemonway DirectKit API 2.0
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface ThreeDS
*/
export interface ThreeDS {
/**
* 3DS Exemption Request
* Possible value
*
- NO_PREFERENCE: The issuing Bank can choose to activate or not 3DS v2
* @type {string}
* @memberof ThreeDS
*/
threeDSModeRequested?: string;
/**
* 3DS Authentication Result
* Possible values:
* - CHALLENGE: 3DS v2 was activated and the card owner was asked to be strongly authenticated
- FRICTIONLESS: 3DS v2 was not activated
- NONE: We could not get the SCA result
* @type {string}
* @memberof ThreeDS
*/
threeDSResult?: string;
}
/**
* Check if a given object implements the ThreeDS interface.
*/
export declare function instanceOfThreeDS(value: object): boolean;
export declare function ThreeDSFromJSON(json: any): ThreeDS;
export declare function ThreeDSFromJSONTyped(json: any, ignoreDiscriminator: boolean): ThreeDS;
export declare function ThreeDSToJSON(value?: ThreeDS | null): any;