Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions kount-ris-sdk/src/main/java/com/kount/ris/Inquiry.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public Inquiry() {
* Set cash amount of any feasible goods.
*
* @param cash
* int Cash amount of any feasible goods
* long Cash amount of any feasible goods
* @return this
*/
public Inquiry setCash(int cash) {
public Inquiry setCash(long cash) {
this.params.put("CASH", String.valueOf(cash));
return this;
}
Expand Down Expand Up @@ -133,7 +133,7 @@ public Inquiry setCurrency(String currency) {
* Transaction amount in lowest possible denomination of given currency
* @return this
*/
public Inquiry setTotal(int total) {
public Inquiry setTotal(long total) {
this.params.put("TOTL", String.valueOf(total));
return this;
}
Expand Down