UNPKG

@adyen/api-library

Version:

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

181 lines 5.13 kB
"use strict"; /* * 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.Webhook = void 0; class Webhook { static getAttributeTypeMap() { return Webhook.attributeTypeMap; } constructor() { } } exports.Webhook = Webhook; Webhook.discriminator = undefined; Webhook.mapping = undefined; Webhook.attributeTypeMap = [ { "name": "_links", "baseName": "_links", "type": "WebhookLinks | null", "format": "" }, { "name": "acceptsExpiredCertificate", "baseName": "acceptsExpiredCertificate", "type": "boolean", "format": "" }, { "name": "acceptsSelfSignedCertificate", "baseName": "acceptsSelfSignedCertificate", "type": "boolean", "format": "" }, { "name": "acceptsUntrustedRootCertificate", "baseName": "acceptsUntrustedRootCertificate", "type": "boolean", "format": "" }, { "name": "accountReference", "baseName": "accountReference", "type": "string", "format": "" }, { "name": "active", "baseName": "active", "type": "boolean", "format": "" }, { "name": "additionalSettings", "baseName": "additionalSettings", "type": "AdditionalSettingsResponse | null", "format": "" }, { "name": "certificateAlias", "baseName": "certificateAlias", "type": "string", "format": "" }, { "name": "communicationFormat", "baseName": "communicationFormat", "type": "Webhook.CommunicationFormatEnum", "format": "" }, { "name": "description", "baseName": "description", "type": "string", "format": "" }, { "name": "encryptionProtocol", "baseName": "encryptionProtocol", "type": "Webhook.EncryptionProtocolEnum", "format": "" }, { "name": "filterMerchantAccountType", "baseName": "filterMerchantAccountType", "type": "Webhook.FilterMerchantAccountTypeEnum", "format": "" }, { "name": "filterMerchantAccounts", "baseName": "filterMerchantAccounts", "type": "Array<string>", "format": "" }, { "name": "hasError", "baseName": "hasError", "type": "boolean", "format": "" }, { "name": "hasPassword", "baseName": "hasPassword", "type": "boolean", "format": "" }, { "name": "hmacKeyCheckValue", "baseName": "hmacKeyCheckValue", "type": "string", "format": "" }, { "name": "id", "baseName": "id", "type": "string", "format": "" }, { "name": "networkType", "baseName": "networkType", "type": "Webhook.NetworkTypeEnum", "format": "" }, { "name": "populateSoapActionHeader", "baseName": "populateSoapActionHeader", "type": "boolean", "format": "" }, { "name": "type", "baseName": "type", "type": "string", "format": "" }, { "name": "url", "baseName": "url", "type": "string", "format": "" }, { "name": "username", "baseName": "username", "type": "string", "format": "" } ]; (function (Webhook) { let CommunicationFormatEnum; (function (CommunicationFormatEnum) { CommunicationFormatEnum["Http"] = "http"; CommunicationFormatEnum["Json"] = "json"; CommunicationFormatEnum["Soap"] = "soap"; })(CommunicationFormatEnum = Webhook.CommunicationFormatEnum || (Webhook.CommunicationFormatEnum = {})); let EncryptionProtocolEnum; (function (EncryptionProtocolEnum) { EncryptionProtocolEnum["Http"] = "HTTP"; EncryptionProtocolEnum["Tlsv12"] = "TLSv1.2"; EncryptionProtocolEnum["Tlsv13"] = "TLSv1.3"; })(EncryptionProtocolEnum = Webhook.EncryptionProtocolEnum || (Webhook.EncryptionProtocolEnum = {})); let FilterMerchantAccountTypeEnum; (function (FilterMerchantAccountTypeEnum) { FilterMerchantAccountTypeEnum["AllAccounts"] = "allAccounts"; FilterMerchantAccountTypeEnum["ExcludeAccounts"] = "excludeAccounts"; FilterMerchantAccountTypeEnum["IncludeAccounts"] = "includeAccounts"; })(FilterMerchantAccountTypeEnum = Webhook.FilterMerchantAccountTypeEnum || (Webhook.FilterMerchantAccountTypeEnum = {})); let NetworkTypeEnum; (function (NetworkTypeEnum) { NetworkTypeEnum["Local"] = "local"; NetworkTypeEnum["Public"] = "public"; })(NetworkTypeEnum = Webhook.NetworkTypeEnum || (Webhook.NetworkTypeEnum = {})); })(Webhook = exports.Webhook || (exports.Webhook = {})); //# sourceMappingURL=webhook.js.map