Skip to content

Commit

Permalink
Merge pull request #122 from UzaiSindiko/feat/add-credit-card-type
Browse files Browse the repository at this point in the history
Adding prepaid and unknown to card type
  • Loading branch information
mesmur authored Aug 30, 2022
2 parents 1602e98 + 8592cf9 commit 6d01d3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion xendit-java-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group 'com.xendit'
version '1.20.3'
version '1.20.4'

sourceCompatibility = 1.8

Expand Down
2 changes: 1 addition & 1 deletion xendit-java-lib/src/main/java/com/xendit/Xendit.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public String getXenditURL() {
}

public String getVersion() {
return "1.20.3";
return "1.20.4";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ public enum ChargeStatus {

public enum CardType {
DEBIT,
CREDIT
CREDIT,
PREPAID,
UNKNOWN
}

public enum ChargeType {
Expand Down

0 comments on commit 6d01d3f

Please sign in to comment.