@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
86 lines • 2.18 kB
JavaScript
;
/*
* The version of the OpenAPI document: v2
*
*
* 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.CardInfo = void 0;
class CardInfo {
static getAttributeTypeMap() {
return CardInfo.attributeTypeMap;
}
constructor() {
}
}
exports.CardInfo = CardInfo;
CardInfo.discriminator = undefined;
CardInfo.mapping = undefined;
CardInfo.attributeTypeMap = [
{
"name": "authentication",
"baseName": "authentication",
"type": "Authentication | null",
"format": ""
},
{
"name": "brand",
"baseName": "brand",
"type": "string",
"format": ""
},
{
"name": "brandVariant",
"baseName": "brandVariant",
"type": "string",
"format": ""
},
{
"name": "cardholderName",
"baseName": "cardholderName",
"type": "string",
"format": ""
},
{
"name": "configuration",
"baseName": "configuration",
"type": "CardConfiguration | null",
"format": ""
},
{
"name": "deliveryContact",
"baseName": "deliveryContact",
"type": "DeliveryContact | null",
"format": ""
},
{
"name": "formFactor",
"baseName": "formFactor",
"type": "CardInfo.FormFactorEnum",
"format": ""
},
{
"name": "threeDSecure",
"baseName": "threeDSecure",
"type": "string",
"format": ""
},
{
"name": "usage",
"baseName": "usage",
"type": "string",
"format": ""
}
];
(function (CardInfo) {
let FormFactorEnum;
(function (FormFactorEnum) {
FormFactorEnum["Physical"] = "physical";
FormFactorEnum["Unknown"] = "unknown";
FormFactorEnum["Virtual"] = "virtual";
})(FormFactorEnum = CardInfo.FormFactorEnum || (CardInfo.FormFactorEnum = {}));
})(CardInfo = exports.CardInfo || (exports.CardInfo = {}));
//# sourceMappingURL=cardInfo.js.map