/** * 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 { TransactionP2P } from './TransactionP2P'; /** * * @export * @interface SendPaymentOutput */ export interface SendPaymentOutput { /** * * @type {TransactionP2P} * @memberof SendPaymentOutput */ transaction?: TransactionP2P; /** * * @type {Error} * @memberof SendPaymentOutput */ error?: Error; } /** * Check if a given object implements the SendPaymentOutput interface. */ export declare function instanceOfSendPaymentOutput(value: object): boolean; export declare function SendPaymentOutputFromJSON(json: any): SendPaymentOutput; export declare function SendPaymentOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendPaymentOutput; export declare function SendPaymentOutputToJSON(value?: SendPaymentOutput | null): any;