UNPKG

@adyen/api-library

Version:

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

94 lines 2.64 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.LegalEntityInfo = void 0; class LegalEntityInfo { static getAttributeTypeMap() { return LegalEntityInfo.attributeTypeMap; } constructor() { } } exports.LegalEntityInfo = LegalEntityInfo; LegalEntityInfo.discriminator = undefined; LegalEntityInfo.mapping = undefined; LegalEntityInfo.attributeTypeMap = [ { "name": "capabilities", "baseName": "capabilities", "type": "{ [key: string]: LegalEntityCapability; }", "format": "" }, { "name": "entityAssociations", "baseName": "entityAssociations", "type": "Array<LegalEntityAssociation>", "format": "" }, { "name": "individual", "baseName": "individual", "type": "Individual | null", "format": "" }, { "name": "organization", "baseName": "organization", "type": "Organization | null", "format": "" }, { "name": "reference", "baseName": "reference", "type": "string", "format": "" }, { "name": "soleProprietorship", "baseName": "soleProprietorship", "type": "SoleProprietorship | null", "format": "" }, { "name": "trust", "baseName": "trust", "type": "Trust | null", "format": "" }, { "name": "type", "baseName": "type", "type": "LegalEntityInfo.TypeEnum", "format": "" }, { "name": "unincorporatedPartnership", "baseName": "unincorporatedPartnership", "type": "UnincorporatedPartnership | null", "format": "" }, { "name": "verificationPlan", "baseName": "verificationPlan", "type": "string", "format": "" } ]; (function (LegalEntityInfo) { let TypeEnum; (function (TypeEnum) { TypeEnum["Individual"] = "individual"; TypeEnum["Organization"] = "organization"; TypeEnum["SoleProprietorship"] = "soleProprietorship"; TypeEnum["Trust"] = "trust"; TypeEnum["UnincorporatedPartnership"] = "unincorporatedPartnership"; })(TypeEnum = LegalEntityInfo.TypeEnum || (LegalEntityInfo.TypeEnum = {})); })(LegalEntityInfo = exports.LegalEntityInfo || (exports.LegalEntityInfo = {})); //# sourceMappingURL=legalEntityInfo.js.map