Skip to content

Commit

Permalink
adds negative balance limit for submerchants (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlicanAkkus authored Aug 22, 2023
1 parent b30969c commit 3990378
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/io/craftgate/request/CreateMemberRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public class CreateMemberRequest {
*/
@Deprecated
private BigDecimal negativeWalletAmountLimit;

private BigDecimal subMerchantMaximumAllowedNegativeBalance;
private Boolean isBuyer;
private Boolean isSubMerchant;
}
2 changes: 2 additions & 0 deletions src/main/java/io/craftgate/request/UpdateMemberRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ public class UpdateMemberRequest {
*/
@Deprecated
private BigDecimal negativeWalletAmountLimit;

private BigDecimal subMerchantMaximumAllowedNegativeBalance;
private Boolean isBuyer;
private Boolean isSubMerchant;
}

0 comments on commit 3990378

Please sign in to comment.