jp.gopay.sdk.models.response.transactiontoken.PhoneNumber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
package jp.gopay.sdk.models.response.transactiontoken;
import com.google.gson.annotations.SerializedName;
public class PhoneNumber {
@SerializedName("local_number")
private String localNumber;
@SerializedName("country_code")
private Integer countryCode;
public PhoneNumber(Integer countryCode, String localNumber) {
this.localNumber = localNumber;
this.countryCode = countryCode;
}
public String getLocalNumber() {
return localNumber;
}
public Integer getCountryCode() {
return countryCode;
}
}