PayMaya/PayMaya-Node-SDK

View on GitHub
lib/paymaya/model/checkout/Buyer.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = Buyer;

function Buyer() {
    this.firstName = "";
    this.middleName = "";
    this.lastName = "";
    this.contact = null;
    this.shippingAddress = null;
    this.billingAddress = null;
}