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

br.com.moip.resource.Phone Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
package br.com.moip.resource;

public class Phone {
    private String areaCode;
    private String number;

    public Phone setAreaCode(final String areaCode) {
        this.areaCode = areaCode;

        return this;
    }

    public String getAreaCode() {
        return areaCode;
    }

    public Phone setNumber(final String number) {
        this.number = number;

        return this;
    }

    public String getNumber() {
        return number;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy