vnbankqr
Version:
Generate QR data for QR payment method in Viet Nam
14 lines (13 loc) • 969 B
JavaScript
export default class AdditionData {
constructor(params) {
this.billNumber = params === null || params === void 0 ? void 0 : params.billNumber;
this.mobileNumber = params === null || params === void 0 ? void 0 : params.mobileNumber;
this.storeLabel = params === null || params === void 0 ? void 0 : params.storeLabel;
this.loyalNumber = params === null || params === void 0 ? void 0 : params.loyaltyNumber;
this.referenceLabel = params === null || params === void 0 ? void 0 : params.referenceLabel;
this.customerLabel = params === null || params === void 0 ? void 0 : params.customerLabel;
this.terminalLabel = params === null || params === void 0 ? void 0 : params.terminalLabel;
this.transactionPurpose = params === null || params === void 0 ? void 0 : params.transactionPurpose;
this.additionDataRequest = params === null || params === void 0 ? void 0 : params.additionDataRequest;
}
}