/** * 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 MoneyInValidateInput */ export interface MoneyInValidateInput { /** * Amount to Debit * Amounts are displaed as an integer in cents (Euro) * @type {number} * @memberof MoneyInValidateInput */ totalAmount: number; /** * Your fee * Amounts are given in integers in cents * @type {number} * @memberof MoneyInValidateInput */ commissionAmount?: number; /** * Leave empty * @type {string} * @memberof MoneyInValidateInput */ specialConfig?: string; } /** * Check if a given object implements the MoneyInValidateInput interface. */ export declare function instanceOfMoneyInValidateInput(value: object): boolean; export declare function MoneyInValidateInputFromJSON(json: any): MoneyInValidateInput; export declare function MoneyInValidateInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyInValidateInput; export declare function MoneyInValidateInputToJSON(value?: MoneyInValidateInput | null): any;