/** * 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 * * @type {string} * @memberof ThreeDS */ threeDSModeRequested?: string; /** * 3DS Authentication Result * Possible values: * * @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;