/** * 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 { TransactionOut } from './TransactionOut'; /** * * @export * @interface CancelMoneyOutOutput */ export interface CancelMoneyOutOutput { /** * * @type {TransactionOut} * @memberof CancelMoneyOutOutput */ transaction?: TransactionOut; /** * * @type {Error} * @memberof CancelMoneyOutOutput */ error?: Error; } /** * Check if a given object implements the CancelMoneyOutOutput interface. */ export declare function instanceOfCancelMoneyOutOutput(value: object): boolean; export declare function CancelMoneyOutOutputFromJSON(json: any): CancelMoneyOutOutput; export declare function CancelMoneyOutOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): CancelMoneyOutOutput; export declare function CancelMoneyOutOutputToJSON(value?: CancelMoneyOutOutput | null): any;