@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
53 lines • 1.9 kB
JavaScript
;
/*
* The version of the OpenAPI document: v1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.EnableServiceRequest = void 0;
/**
* It conveys the services that will be enabled for the POI Terminal without the request of the Sale System, and a possible invitation for the Customer to start the services. Content of the Enable Service Request message.
*/
class EnableServiceRequest {
static getAttributeTypeMap() {
return EnableServiceRequest.attributeTypeMap;
}
constructor() {
}
}
exports.EnableServiceRequest = EnableServiceRequest;
EnableServiceRequest.discriminator = undefined;
EnableServiceRequest.mapping = undefined;
EnableServiceRequest.attributeTypeMap = [
{
"name": "TransactionAction",
"baseName": "TransactionAction",
"type": "TransactionAction",
"format": ""
},
{
"name": "ServicesEnabled",
"baseName": "ServicesEnabled",
"type": "EnableServiceRequest.ServicesEnabledEnum",
"format": ""
},
{
"name": "DisplayOutput",
"baseName": "DisplayOutput",
"type": "DisplayOutput | null",
"format": ""
}
];
(function (EnableServiceRequest) {
let ServicesEnabledEnum;
(function (ServicesEnabledEnum) {
ServicesEnabledEnum["CardAcquisition"] = "CardAcquisition";
ServicesEnabledEnum["Payment"] = "Payment";
ServicesEnabledEnum["Loyalty"] = "Loyalty";
})(ServicesEnabledEnum = EnableServiceRequest.ServicesEnabledEnum || (EnableServiceRequest.ServicesEnabledEnum = {}));
})(EnableServiceRequest = exports.EnableServiceRequest || (exports.EnableServiceRequest = {}));
//# sourceMappingURL=enableServiceRequest.js.map