UNPKG

@atomixdesign/nodepay-fatzebra

Version:

Nodepay strategy for the Fatzebra payment gateway.

33 lines (32 loc) 1.24 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FatzebraCustomerDetails = exports.FatzebraAddress = void 0; var FatzebraAddress = /** @class */ (function () { function FatzebraAddress(address, city, state, postcode, country) { this.address = address; this.city = city; this.state = state; this.postcode = postcode; this.country = country; } return FatzebraAddress; }()); exports.FatzebraAddress = FatzebraAddress; var FatzebraCustomerDetails = /** @class */ (function () { function FatzebraCustomerDetails(firstName, lastName, reference, emailAddress, address1, city, state, postCode, country, ipAddress, customerId, address2) { this.firstName = firstName; this.lastName = lastName; this.reference = reference; this.emailAddress = emailAddress; this.address1 = address1; this.city = city; this.state = state; this.postCode = postCode; this.country = country; this.ipAddress = ipAddress; this.customerId = customerId; this.address2 = address2; } return FatzebraCustomerDetails; }()); exports.FatzebraCustomerDetails = FatzebraCustomerDetails;