/** * 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'; import type { RiskAnalysis } from './RiskAnalysis'; import type { ThreeDS } from './ThreeDS'; /** * * @export * @interface MoneyIn3DInitInput */ export interface MoneyIn3DInitInput { /** * * @type {CardInfo} * @memberof MoneyIn3DInitInput */ card?: CardInfo; /** * Return URL of the 3-D Secure website. Your client will be redirected on this URL, which should be your website URL. * @type {string} * @memberof MoneyIn3DInitInput */ returnUrl?: string; /** * * @type {number} * @memberof MoneyIn3DInitInput */ cardId?: number; /** * * @type {boolean} * @memberof MoneyIn3DInitInput */ registerCard?: boolean; /** * * @type {ThreeDS} * @memberof MoneyIn3DInitInput */ threeDS?: ThreeDS; /** * * @type {RiskAnalysis} * @memberof MoneyIn3DInitInput */ riskAnalysis?: RiskAnalysis; /** * Average amount of future recurring payments to cover recurring payments with variable amounts. **Note:** Only if the amount is higher than the amount of the first transaction. cover recurring payments with variable amounts. **Note:** Only if the amount is higher than the amount of the first transaction. * @type {number} * @memberof MoneyIn3DInitInput */ recurringAvgAmount?: number; /** * **Recurring**: If a payment follows a recurring amount or **One_shot**: when there is no future recurring payments. * @type {string} * @memberof MoneyIn3DInitInput */ paymentPattern?: string; /** * Unique ID of the call, generated by your server. This ID can be used as a search field when looking for operation details * @type {string} * @memberof MoneyIn3DInitInput */ reference?: string; /** * Payment Account ID to Credit * @type {string} * @memberof MoneyIn3DInitInput */ accountId: string; /** * Amount to Debit * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyIn3DInitInput */ totalAmount?: number; /** * Your Fee * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyIn3DInitInput */ commissionAmount?: number; /** * Comment Regarding the Transaction * @type {string} * @memberof MoneyIn3DInitInput */ comment?: string; /** * If true: * 1. [amountCom] will be ignored and will be replaced with Lemonway's fee * 2. You will not receive any fee * @type {boolean} * @memberof MoneyIn3DInitInput */ autoCommission?: boolean; } /** * Check if a given object implements the MoneyIn3DInitInput interface. */ export declare function instanceOfMoneyIn3DInitInput(value: object): boolean; export declare function MoneyIn3DInitInputFromJSON(json: any): MoneyIn3DInitInput; export declare function MoneyIn3DInitInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyIn3DInitInput; export declare function MoneyIn3DInitInputToJSON(value?: MoneyIn3DInitInput | null): any;