/** * 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 CancelMoneyInInput */ export interface CancelMoneyInInput { /** * Payment Account ID * @type {string} * @memberof CancelMoneyInInput */ account: string; } /** * Check if a given object implements the CancelMoneyInInput interface. */ export declare function instanceOfCancelMoneyInInput(value: object): boolean; export declare function CancelMoneyInInputFromJSON(json: any): CancelMoneyInInput; export declare function CancelMoneyInInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): CancelMoneyInInput; export declare function CancelMoneyInInputToJSON(value?: CancelMoneyInInput | null): any;