Skip to content

Commit

Permalink
feat: add void_status as new field ewalletcharge
Browse files Browse the repository at this point in the history
  • Loading branch information
Adi R committed Aug 16, 2022
1 parent 0067157 commit 59ef05c
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 59ef05c

Please sign in to comment.