@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
63 lines • 1.81 kB
JavaScript
;
/*
* The version of the OpenAPI document: v1
*
*
* 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.PaymentInstrumentData = void 0;
/**
* Data related to the instrument of payment for the transaction. Sent in the result of the payment transaction. For a card, it could also be sent in the `CardAcquisition` response, to be processed by the Sale System.
*/
class PaymentInstrumentData {
static getAttributeTypeMap() {
return PaymentInstrumentData.attributeTypeMap;
}
constructor() {
}
}
exports.PaymentInstrumentData = PaymentInstrumentData;
PaymentInstrumentData.discriminator = undefined;
PaymentInstrumentData.mapping = undefined;
PaymentInstrumentData.attributeTypeMap = [
{
"name": "PaymentInstrumentType",
"baseName": "PaymentInstrumentType",
"type": "PaymentInstrumentType",
"format": ""
},
{
"name": "ProtectedCardData",
"baseName": "ProtectedCardData",
"type": "string",
"format": ""
},
{
"name": "CardData",
"baseName": "CardData",
"type": "CardData | null",
"format": ""
},
{
"name": "CheckData",
"baseName": "CheckData",
"type": "CheckData | null",
"format": ""
},
{
"name": "MobileData",
"baseName": "MobileData",
"type": "MobileData | null",
"format": ""
},
{
"name": "StoredValueAccountID",
"baseName": "StoredValueAccountID",
"type": "StoredValueAccountID | null",
"format": ""
}
];
//# sourceMappingURL=paymentInstrumentData.js.map