Skip to content

Commit

Permalink
phone, carrier
Browse files Browse the repository at this point in the history
  • Loading branch information
jangbora committed Sep 5, 2019
1 parent 7dd2b20 commit cb89317
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pom.xml에 아래의 내용을 추가해주세요.
<dependency>
<groupId>com.github.iamport</groupId>
<artifactId>iamport-rest-client-java</artifactId>
<version>0.2.3</version>
<version>0.2.4</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.github.iamport</groupId>
<artifactId>iamport-rest-client</artifactId>
<version>0.2.3</version>
<version>0.2.4</version>
<packaging>jar</packaging>

<name>IamportRestClient</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ public class Certification {

@SerializedName("birth")
int birth;

@SerializedName("phone")
String phone;

@SerializedName("carrier")
String carrier;

@SerializedName("certified")
boolean certified;
Expand Down Expand Up @@ -67,6 +73,10 @@ public Date getBirth() {
return new Date( birth * 1000L );
}

public String getPhone() { return phone; }

public String getCarrier() { return carrier; }

public boolean isCertified() {
return certified;
}
Expand Down

0 comments on commit cb89317

Please sign in to comment.