|
|
@@ -18,12 +18,12 @@ import com.google.gson.annotations.SerializedName;
|
|
|
public class AuthConfirmRequestBean extends RequestBean {
|
|
|
/*
|
|
|
""auth_no"" : 인증번호(string) ,
|
|
|
- ""device_no"" : 기기번호(string)
|
|
|
+ ""phone_no"" : 폰번호(string) 인증서버 연결 이전까지 테스트용
|
|
|
*/
|
|
|
@SerializedName("auth_no")
|
|
|
private String authorizationNumber;
|
|
|
- @SerializedName("device_no")
|
|
|
- private String deviceUuid;
|
|
|
+ @SerializedName("phone_no")
|
|
|
+ private String phoneNumber;
|
|
|
|
|
|
public String getAuthorizationNumber() {
|
|
|
return authorizationNumber;
|
|
|
@@ -33,11 +33,11 @@ public class AuthConfirmRequestBean extends RequestBean {
|
|
|
this.authorizationNumber = authorizationNumber;
|
|
|
}
|
|
|
|
|
|
- public String getDeviceUuid() {
|
|
|
- return deviceUuid;
|
|
|
+ public String getPhoneNumber() {
|
|
|
+ return phoneNumber;
|
|
|
}
|
|
|
|
|
|
- public void setDeviceUuid(String deviceUuid) {
|
|
|
- this.deviceUuid = deviceUuid;
|
|
|
+ public void setPhoneNumber(String phoneNumber) {
|
|
|
+ this.phoneNumber = phoneNumber;
|
|
|
}
|
|
|
}
|