UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

39 lines (38 loc) 974 B
/** * Information related to the software of the Sale System which manages the NEXO Sale to POI protocol. */ export declare class SaleSoftware { /** * Identification of the Manufacturer. */ "ManufacturerID": string; /** * Name of the software product. */ "ApplicationName": string; /** * Version of the software product. */ "SoftwareVersion": string; /** * Certification code of the software which manages the Sale to POI protocol. */ "CertificationCode": string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }