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