Skip to content

Commit

Permalink
Merge pull request #121 from adityarx/feat/DIGI-6402/add-void-status
Browse files Browse the repository at this point in the history
feat: [DIGI-6402] add void_status as new field ewalletcharge
  • Loading branch information
flamehamster authored Aug 16, 2022
2 parents 0067157 + 59ef05c commit 1602e98
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 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.2'
version '1.20.3'

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.2";
return "1.20.3";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ public class EWalletCharge {
@SerializedName("voided_at")
private String voidedAt;

@SerializedName("void_status")
private String voidStatus;

@SerializedName("capture_now")
private Boolean captureNow;

Expand Down

0 comments on commit 1602e98

Please sign in to comment.