Skip to content

Commit

Permalink
Fix maven release
Browse files Browse the repository at this point in the history
  • Loading branch information
alplabin committed Oct 2, 2024
1 parent 2011c26 commit dc6876f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/main/java/com/binance/connector/client/impl/spot/Margin.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public Margin(String baseUrl, String apiKey, SignatureGenerator signatureGenerat
/**
* POST /sapi/v1/margin/borrow-repay
* <br>
* @param Map of String,Object pair
* @param
* parameters Map of String,Object pair
* where String is the name of the parameter and Object is the value of the param
* <br><br>
* asset -- mandatory/string <br>
Expand All @@ -63,7 +64,8 @@ public String borrowRepay(Map<String, Object> parameters) {
/**
* GET /sapi/v1/margin/borrow-repay
* <br>
* @param Map of String,Object pair
* @param
* parameters Map of String,Object pair
* where String is the name of the parameter and Object is the value of the param
* <br><br>
* type -- mandatory/string - BORROW or REPAY <br>
Expand All @@ -88,7 +90,8 @@ public String getBorrowRepay(Map<String, Object> parameters) {
/**
* GET /sapi/v1/margin/allAssets
* <br>
* @param Map of String,Object pair
* @param
* parameters Map of String,Object pair
* where String is the name of the parameter and Object is the value of the param
* <br><br>
* asset -- optional/string <br>
Expand All @@ -104,7 +107,8 @@ public String allAssets(Map<String, Object> parameters) {
/**
* GET /sapi/v1/margin/allPairs
* <br>
* @param Map of String,Object pair
* @param
* parameters Map of String,Object pair
* where String is the name of the parameter and Object is the value of the param
* <br><br>
* symbol -- optional/string <br>
Expand Down

0 comments on commit dc6876f

Please sign in to comment.