PayMaya/PayMaya-Node-SDK

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

Summary

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

function Address() {
    this.line1 = "";
    this.line2 = "";
    this.city = "";
    this.state = "";
    this.zipCode = "";
    this.countryCode = "";
}