/** * 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 { CardInfoExtended } from './CardInfoExtended'; import type { TransactionInfo } from './TransactionInfo'; /** * * @export * @interface MoneyInCreateInput */ export interface MoneyInCreateInput { /** * * @type {CardInfoExtended} * @memberof MoneyInCreateInput */ card: CardInfoExtended; /** * * @type {TransactionInfo} * @memberof MoneyInCreateInput */ transaction: TransactionInfo; /** * Payment Account ID to Credit * @type {string} * @memberof MoneyInCreateInput */ accountId: string; /** * Amount to Debit * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyInCreateInput */ totalAmount?: number; /** * Your Fee * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyInCreateInput */ commissionAmount?: number; /** * Comment Regarding the Transaction * @type {string} * @memberof MoneyInCreateInput */ 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 MoneyInCreateInput */ autoCommission?: boolean; } /** * Check if a given object implements the MoneyInCreateInput interface. */ export declare function instanceOfMoneyInCreateInput(value: object): boolean; export declare function MoneyInCreateInputFromJSON(json: any): MoneyInCreateInput; export declare function MoneyInCreateInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyInCreateInput; export declare function MoneyInCreateInputToJSON(value?: MoneyInCreateInput | null): any;