br.com.moip.resource.Phone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Moip v2 APIs
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;
}
}