/** * 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 { EuPagoInit } from './EuPagoInit'; /** * * @export * @interface MoneyInPayshopInitOutput */ export interface MoneyInPayshopInitOutput { /** * * @type {EuPagoInit} * @memberof MoneyInPayshopInitOutput */ euPagoInit?: EuPagoInit; /** * * @type {Error} * @memberof MoneyInPayshopInitOutput */ error?: Error; } /** * Check if a given object implements the MoneyInPayshopInitOutput interface. */ export declare function instanceOfMoneyInPayshopInitOutput(value: object): boolean; export declare function MoneyInPayshopInitOutputFromJSON(json: any): MoneyInPayshopInitOutput; export declare function MoneyInPayshopInitOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyInPayshopInitOutput; export declare function MoneyInPayshopInitOutputToJSON(value?: MoneyInPayshopInitOutput | null): any;