/** * 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 { TransactionIn } from './TransactionIn'; /** * * @export * @interface MoneyInValidateOutput */ export interface MoneyInValidateOutput { /** * * @type {TransactionIn} * @memberof MoneyInValidateOutput */ transaction?: TransactionIn; /** * * @type {Error} * @memberof MoneyInValidateOutput */ error?: Error; } /** * Check if a given object implements the MoneyInValidateOutput interface. */ export declare function instanceOfMoneyInValidateOutput(value: object): boolean; export declare function MoneyInValidateOutputFromJSON(json: any): MoneyInValidateOutput; export declare function MoneyInValidateOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyInValidateOutput; export declare function MoneyInValidateOutputToJSON(value?: MoneyInValidateOutput | null): any;