This repository has been archived by the owner on Oct 30, 2023. It is now read-only.
forked from joaopsilva/binance-java-api
-
Notifications
You must be signed in to change notification settings - Fork 622
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8524e77
commit c9ff0d9
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
74 changes: 74 additions & 0 deletions
74
src/main/java/com/binance/api/client/domain/account/CrossMarginAssets.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
package com.binance.api.client.domain.account; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
|
||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public class CrossMarginAssets { | ||
|
||
public String assetFullName; | ||
public String assetName; | ||
public boolean isBorrowable; | ||
public boolean isMortgageable; | ||
public String userMinBorrow; | ||
public String userMinRepay; | ||
|
||
public String getAssetFullName() { | ||
return assetFullName; | ||
} | ||
|
||
public void setAssetFullName(String assetFullName) { | ||
this.assetFullName = assetFullName; | ||
} | ||
|
||
public String getAssetName() { | ||
return assetName; | ||
} | ||
|
||
public void setAssetName(String assetName) { | ||
this.assetName = assetName; | ||
} | ||
|
||
public boolean isBorrowable() { | ||
return isBorrowable; | ||
} | ||
|
||
public void setBorrowable(boolean borrowable) { | ||
isBorrowable = borrowable; | ||
} | ||
|
||
public boolean isMortgageable() { | ||
return isMortgageable; | ||
} | ||
|
||
public void setMortgageable(boolean mortgageable) { | ||
isMortgageable = mortgageable; | ||
} | ||
|
||
public String getUserMinBorrow() { | ||
return userMinBorrow; | ||
} | ||
|
||
public void setUserMinBorrow(String userMinBorrow) { | ||
this.userMinBorrow = userMinBorrow; | ||
} | ||
|
||
public String getUserMinRepay() { | ||
return userMinRepay; | ||
} | ||
|
||
public void setUserMinRepay(String userMinRepay) { | ||
this.userMinRepay = userMinRepay; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "CrossMarginAssets{" + | ||
"assetFullName='" + assetFullName + '\'' + | ||
", assetName='" + assetName + '\'' + | ||
", isBorrowable=" + isBorrowable + | ||
", isMortgageable=" + isMortgageable + | ||
", userMinBorrow='" + userMinBorrow + '\'' + | ||
", userMinRepay='" + userMinRepay + '\'' + | ||
'}'; | ||
} | ||
} |