/** * 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. */ import type { CardInfo } from './CardInfo'; /** * * @export * @interface MoneyIn3DAuthenticateInput */ export interface MoneyIn3DAuthenticateInput { /** * * @type {CardInfo} * @memberof MoneyIn3DAuthenticateInput */ card?: CardInfo; /** * MD Data Returned by 3-D Secure Site * @type {string} * @memberof MoneyIn3DAuthenticateInput */ md?: string; /** * Pares Data Returned by 3-D Secure Authentication Website * @type {string} * @memberof MoneyIn3DAuthenticateInput */ pares?: string; /** * Leave Empty * @type {string} * @memberof MoneyIn3DAuthenticateInput */ specialConfig?: string; } /** * Check if a given object implements the MoneyIn3DAuthenticateInput interface. */ export declare function instanceOfMoneyIn3DAuthenticateInput(value: object): boolean; export declare function MoneyIn3DAuthenticateInputFromJSON(json: any): MoneyIn3DAuthenticateInput; export declare function MoneyIn3DAuthenticateInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyIn3DAuthenticateInput; export declare function MoneyIn3DAuthenticateInputToJSON(value?: MoneyIn3DAuthenticateInput | null): any;