Skip to content

Commit

Permalink
adds negative balance limit for submerchants
Browse files Browse the repository at this point in the history
  • Loading branch information
Alican Akkus authored and Alican Akkus committed Aug 21, 2023
1 parent 91d3ad0 commit 0c1fa11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Craftgate/Request/CreateMemberRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class CreateMemberRequest
[Obsolete("deprecated since version 1.0.45. use CreateWalletRequest.NegativeAmountLimit instead.")]
public decimal? NegativeWalletAmountLimit { get; set; }

public decimal? SubMerchantMaximumAllowedNegativeBalance { get; set; }
public bool? IsBuyer { get; set; }
public bool? IsSubMerchant { get; set; }
}
Expand Down
1 change: 1 addition & 0 deletions Craftgate/Request/UpdateMemberRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class UpdateMemberRequest
[Obsolete("deprecated since version 1.0.45. use CreateWalletRequest.NegativeAmountLimit instead.")]
public decimal? NegativeWalletAmountLimit { get; set; }

public decimal? SubMerchantMaximumAllowedNegativeBalance { get; set; }
public bool? IsBuyer { get; set; }
public bool? IsSubMerchant { get; set; }
}
Expand Down

0 comments on commit 0c1fa11

Please sign in to comment.