/** * 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 MoneyInMultibancoInitInput */ export interface MoneyInMultibancoInitInput { /** * * @type {string} * @memberof MoneyInMultibancoInitInput */ startDate?: string; /** * * @type {string} * @memberof MoneyInMultibancoInitInput */ endDate?: string; /** * 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 MoneyInMultibancoInitInput */ 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 MoneyInMultibancoInitInput */ reference?: string; /** * Payment Account ID to Credit * @type {string} * @memberof MoneyInMultibancoInitInput */ accountId: string; /** * Amount to Debit * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyInMultibancoInitInput */ totalAmount?: number; /** * Your Fee * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyInMultibancoInitInput */ commissionAmount?: number; /** * Comment Regarding the Transaction * @type {string} * @memberof MoneyInMultibancoInitInput */ 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 MoneyInMultibancoInitInput */ autoCommission?: boolean; } /** * Check if a given object implements the MoneyInMultibancoInitInput interface. */ export declare function instanceOfMoneyInMultibancoInitInput(value: object): boolean; export declare function MoneyInMultibancoInitInputFromJSON(json: any): MoneyInMultibancoInitInput; export declare function MoneyInMultibancoInitInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyInMultibancoInitInput; export declare function MoneyInMultibancoInitInputToJSON(value?: MoneyInMultibancoInitInput | null): any;