/** * 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 { Links } from './Links'; import type { TransactionsTransactionP2P } from './TransactionsTransactionP2P'; /** * * @export * @interface GetPaymentDetailsOutput */ export interface GetPaymentDetailsOutput { /** * * @type {TransactionsTransactionP2P} * @memberof GetPaymentDetailsOutput */ transactions?: TransactionsTransactionP2P; /** * * @type {Links} * @memberof GetPaymentDetailsOutput */ links?: Links; /** * * @type {Error} * @memberof GetPaymentDetailsOutput */ error?: Error; } /** * Check if a given object implements the GetPaymentDetailsOutput interface. */ export declare function instanceOfGetPaymentDetailsOutput(value: object): boolean; export declare function GetPaymentDetailsOutputFromJSON(json: any): GetPaymentDetailsOutput; export declare function GetPaymentDetailsOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPaymentDetailsOutput; export declare function GetPaymentDetailsOutputToJSON(value?: GetPaymentDetailsOutput | null): any;