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