/** * 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 { TransactionRefund } from './TransactionRefund'; /** * * @export * @interface RefundMoneyInOutput */ export interface RefundMoneyInOutput { /** * * @type {TransactionRefund} * @memberof RefundMoneyInOutput */ transaction?: TransactionRefund; /** * * @type {Error} * @memberof RefundMoneyInOutput */ error?: Error; } /** * Check if a given object implements the RefundMoneyInOutput interface. */ export declare function instanceOfRefundMoneyInOutput(value: object): boolean; export declare function RefundMoneyInOutputFromJSON(json: any): RefundMoneyInOutput; export declare function RefundMoneyInOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefundMoneyInOutput; export declare function RefundMoneyInOutputToJSON(value?: RefundMoneyInOutput | null): any;