/** * 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 MoneyInChequeInitOutput */ export interface MoneyInChequeInitOutput { /** * * @type {TransactionIn} * @memberof MoneyInChequeInitOutput */ transaction?: TransactionIn; /** * * @type {Error} * @memberof MoneyInChequeInitOutput */ error?: Error; } /** * Check if a given object implements the MoneyInChequeInitOutput interface. */ export declare function instanceOfMoneyInChequeInitOutput(value: object): boolean; export declare function MoneyInChequeInitOutputFromJSON(json: any): MoneyInChequeInitOutput; export declare function MoneyInChequeInitOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyInChequeInitOutput; export declare function MoneyInChequeInitOutputToJSON(value?: MoneyInChequeInitOutput | null): any;