Skip to content

Commit

Permalink
getter 누락되어 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jangbora committed Sep 6, 2017
1 parent 38afc36 commit 8193a30
Show file tree
Hide file tree
Showing 3 changed files with 18 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.1.4</version>
<version>0.1.5</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.1.4</version>
<version>0.1.5</version>
<packaging>jar</packaging>

<name>IamportRestClient</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,21 @@ public BigDecimal getAmount() {
public List<PaymentBalanceEntry> getHistories() {
return histories;
}

public Balance getCashReceipt() {
return cash_receipt;
}

public Balance getPrimary() {
return primary;
}

public Balance getSecondary() {
return secondary;
}

public Balance getDiscount() {
return discount;
}

}

0 comments on commit 8193a30

Please sign in to comment.