/** * 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. */ /** * * @export * @interface TransactionInfo */ export interface TransactionInfo { /** * Transaction Reference Sent to the PSP * @type {string} * @memberof TransactionInfo */ reference: string; /** * Merchant Order ID * @type {string} * @memberof TransactionInfo */ order: string; /** * Transaction DateTime (UTC Unix timestamp) * @type {string} * @memberof TransactionInfo */ dateTime: string; /** * Merchant ID Sent to PSP * @type {string} * @memberof TransactionInfo */ merchantId: string; /** * Transaction Authorisation ID Received from PSP * @type {string} * @memberof TransactionInfo */ authorisationId: string; } /** * Check if a given object implements the TransactionInfo interface. */ export declare function instanceOfTransactionInfo(value: object): boolean; export declare function TransactionInfoFromJSON(json: any): TransactionInfo; export declare function TransactionInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionInfo; export declare function TransactionInfoToJSON(value?: TransactionInfo | null): any;