@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
86 lines • 2.21 kB
JavaScript
;
/*
* The version of the OpenAPI document: v4
*
*
* 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.PartyIdentification = void 0;
class PartyIdentification {
static getAttributeTypeMap() {
return PartyIdentification.attributeTypeMap;
}
constructor() {
}
}
exports.PartyIdentification = PartyIdentification;
PartyIdentification.discriminator = undefined;
PartyIdentification.mapping = undefined;
PartyIdentification.attributeTypeMap = [
{
"name": "address",
"baseName": "address",
"type": "Address | null",
"format": ""
},
{
"name": "dateOfBirth",
"baseName": "dateOfBirth",
"type": "string",
"format": "date"
},
{
"name": "email",
"baseName": "email",
"type": "string",
"format": ""
},
{
"name": "firstName",
"baseName": "firstName",
"type": "string",
"format": ""
},
{
"name": "fullName",
"baseName": "fullName",
"type": "string",
"format": ""
},
{
"name": "lastName",
"baseName": "lastName",
"type": "string",
"format": ""
},
{
"name": "reference",
"baseName": "reference",
"type": "string",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "PartyIdentification.TypeEnum",
"format": ""
},
{
"name": "url",
"baseName": "url",
"type": "string",
"format": ""
}
];
(function (PartyIdentification) {
let TypeEnum;
(function (TypeEnum) {
TypeEnum["Individual"] = "individual";
TypeEnum["Organization"] = "organization";
TypeEnum["Unknown"] = "unknown";
})(TypeEnum = PartyIdentification.TypeEnum || (PartyIdentification.TypeEnum = {}));
})(PartyIdentification = exports.PartyIdentification || (exports.PartyIdentification = {}));
//# sourceMappingURL=partyIdentification.js.map