/** * 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 { PrivateData } from './PrivateData'; /** * * @export * @interface GetPaymentDetailsInput */ export interface GetPaymentDetailsInput { /** * Transaction ID * @type {number} * @memberof GetPaymentDetailsInput */ transactionId?: number; /** * Transaction Comment * @type {string} * @memberof GetPaymentDetailsInput */ transactionComment?: string; /** * Unique ID generated by your server * @type {string} * @memberof GetPaymentDetailsInput */ reference?: string; /** * * @type {PrivateData} * @memberof GetPaymentDetailsInput */ privateData?: PrivateData; } /** * Check if a given object implements the GetPaymentDetailsInput interface. */ export declare function instanceOfGetPaymentDetailsInput(value: object): boolean; export declare function GetPaymentDetailsInputFromJSON(json: any): GetPaymentDetailsInput; export declare function GetPaymentDetailsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPaymentDetailsInput; export declare function GetPaymentDetailsInputToJSON(value?: GetPaymentDetailsInput | null): any;