@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
54 lines • 1.79 kB
JavaScript
;
/*
* The version of the OpenAPI document: v3
*
*
* 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.MerchantCreatedNotificationRequest = void 0;
class MerchantCreatedNotificationRequest {
static getAttributeTypeMap() {
return MerchantCreatedNotificationRequest.attributeTypeMap;
}
constructor() {
}
}
exports.MerchantCreatedNotificationRequest = MerchantCreatedNotificationRequest;
MerchantCreatedNotificationRequest.discriminator = undefined;
MerchantCreatedNotificationRequest.mapping = undefined;
MerchantCreatedNotificationRequest.attributeTypeMap = [
{
"name": "createdAt",
"baseName": "createdAt",
"type": "Date",
"format": "date-time"
},
{
"name": "data",
"baseName": "data",
"type": "AccountCreateNotificationData",
"format": ""
},
{
"name": "environment",
"baseName": "environment",
"type": "string",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "MerchantCreatedNotificationRequest.TypeEnum",
"format": ""
}
];
(function (MerchantCreatedNotificationRequest) {
let TypeEnum;
(function (TypeEnum) {
TypeEnum["MerchantCreated"] = "merchant.created";
})(TypeEnum = MerchantCreatedNotificationRequest.TypeEnum || (MerchantCreatedNotificationRequest.TypeEnum = {}));
})(MerchantCreatedNotificationRequest = exports.MerchantCreatedNotificationRequest || (exports.MerchantCreatedNotificationRequest = {}));
//# sourceMappingURL=merchantCreatedNotificationRequest.js.map