@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
126 lines • 3.61 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.Document = void 0;
class Document {
static getAttributeTypeMap() {
return Document.attributeTypeMap;
}
constructor() {
}
}
exports.Document = Document;
Document.discriminator = undefined;
Document.mapping = undefined;
Document.attributeTypeMap = [
{
"name": "attachment",
"baseName": "attachment",
"type": "Attachment | null",
"format": ""
},
{
"name": "attachments",
"baseName": "attachments",
"type": "Array<Attachment>",
"format": ""
},
{
"name": "creationDate",
"baseName": "creationDate",
"type": "Date",
"format": "date-time"
},
{
"name": "description",
"baseName": "description",
"type": "string",
"format": ""
},
{
"name": "expiryDate",
"baseName": "expiryDate",
"type": "string",
"format": ""
},
{
"name": "fileName",
"baseName": "fileName",
"type": "string",
"format": ""
},
{
"name": "id",
"baseName": "id",
"type": "string",
"format": ""
},
{
"name": "issuerCountry",
"baseName": "issuerCountry",
"type": "string",
"format": ""
},
{
"name": "issuerState",
"baseName": "issuerState",
"type": "string",
"format": ""
},
{
"name": "modificationDate",
"baseName": "modificationDate",
"type": "Date",
"format": "date-time"
},
{
"name": "number",
"baseName": "number",
"type": "string",
"format": ""
},
{
"name": "owner",
"baseName": "owner",
"type": "OwnerEntity | null",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "Document.TypeEnum",
"format": ""
}
];
(function (Document) {
let TypeEnum;
(function (TypeEnum) {
TypeEnum["BankStatement"] = "bankStatement";
TypeEnum["DriversLicense"] = "driversLicense";
TypeEnum["IdentityCard"] = "identityCard";
TypeEnum["NationalIdNumber"] = "nationalIdNumber";
TypeEnum["Passport"] = "passport";
TypeEnum["ProofOfAddress"] = "proofOfAddress";
TypeEnum["ProofOfNationalIdNumber"] = "proofOfNationalIdNumber";
TypeEnum["ProofOfResidency"] = "proofOfResidency";
TypeEnum["RegistrationDocument"] = "registrationDocument";
TypeEnum["VatDocument"] = "vatDocument";
TypeEnum["ProofOfOrganizationTaxInfo"] = "proofOfOrganizationTaxInfo";
TypeEnum["ProofOfIndividualTaxId"] = "proofOfIndividualTaxId";
TypeEnum["ProofOfOwnership"] = "proofOfOwnership";
TypeEnum["ProofOfSignatory"] = "proofOfSignatory";
TypeEnum["LiveSelfie"] = "liveSelfie";
TypeEnum["ProofOfIndustry"] = "proofOfIndustry";
TypeEnum["ConstitutionalDocument"] = "constitutionalDocument";
TypeEnum["ProofOfFundingOrWealthSource"] = "proofOfFundingOrWealthSource";
TypeEnum["ProofOfRelationship"] = "proofOfRelationship";
})(TypeEnum = Document.TypeEnum || (Document.TypeEnum = {}));
})(Document = exports.Document || (exports.Document = {}));
//# sourceMappingURL=document.js.map