/** * 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 CancelMoneyOutInput */ export interface CancelMoneyOutInput { /** * Payment Account ID * @type {string} * @memberof CancelMoneyOutInput */ accountId?: string; } /** * Check if a given object implements the CancelMoneyOutInput interface. */ export declare function instanceOfCancelMoneyOutInput(value: object): boolean; export declare function CancelMoneyOutInputFromJSON(json: any): CancelMoneyOutInput; export declare function CancelMoneyOutInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): CancelMoneyOutInput; export declare function CancelMoneyOutInputToJSON(value?: CancelMoneyOutInput | null): any;