All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.braintreegateway.InternationalPhone Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway;

import com.braintreegateway.util.NodeWrapper;

public class InternationalPhone {
    private String countryCode;
    private String nationalNumber;

    public InternationalPhone(NodeWrapper node) {
        countryCode = node.findString("country-code");
        nationalNumber = node.findString("national-number");
    }

    public InternationalPhone(String countryCode, String nationalNumber) {
        this.countryCode = countryCode;
        this.nationalNumber = nationalNumber;
    }

    public String getCountryCode() {
        return countryCode;
    }

    public String getNationalNumber() {
        return nationalNumber;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy