/** * 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 MoneyInSofortInitInput */ export interface MoneyInSofortInitInput { /** * Your site returns the URL, called to terminate the operation and on which the callback will be sent, with data in POST parameters. * This URL must contain a unique ID so you know which operation is related to the return. * @type {string} * @memberof MoneyInSofortInitInput */ returnUrl: 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 MoneyInSofortInitInput */ reference?: string; /** * Payment Account ID to Credit * @type {string} * @memberof MoneyInSofortInitInput */ accountId: string; /** * Amount to Debit * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyInSofortInitInput */ totalAmount?: number; /** * Your Fee * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyInSofortInitInput */ commissionAmount?: number; /** * Comment Regarding the Transaction * @type {string} * @memberof MoneyInSofortInitInput */ 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 MoneyInSofortInitInput */ autoCommission?: boolean; } /** * Check if a given object implements the MoneyInSofortInitInput interface. */ export declare function instanceOfMoneyInSofortInitInput(value: object): boolean; export declare function MoneyInSofortInitInputFromJSON(json: any): MoneyInSofortInitInput; export declare function MoneyInSofortInitInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyInSofortInitInput; export declare function MoneyInSofortInitInputToJSON(value?: MoneyInSofortInitInput | null): any;