Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit c9ff0d9

Browse files
committed
no message
1 parent 8524e77 commit c9ff0d9

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
package com.binance.api.client.domain.account;
2+
3+
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4+
5+
@JsonIgnoreProperties(ignoreUnknown = true)
6+
public class CrossMarginAssets {
7+
8+
public String assetFullName;
9+
public String assetName;
10+
public boolean isBorrowable;
11+
public boolean isMortgageable;
12+
public String userMinBorrow;
13+
public String userMinRepay;
14+
15+
public String getAssetFullName() {
16+
return assetFullName;
17+
}
18+
19+
public void setAssetFullName(String assetFullName) {
20+
this.assetFullName = assetFullName;
21+
}
22+
23+
public String getAssetName() {
24+
return assetName;
25+
}
26+
27+
public void setAssetName(String assetName) {
28+
this.assetName = assetName;
29+
}
30+
31+
public boolean isBorrowable() {
32+
return isBorrowable;
33+
}
34+
35+
public void setBorrowable(boolean borrowable) {
36+
isBorrowable = borrowable;
37+
}
38+
39+
public boolean isMortgageable() {
40+
return isMortgageable;
41+
}
42+
43+
public void setMortgageable(boolean mortgageable) {
44+
isMortgageable = mortgageable;
45+
}
46+
47+
public String getUserMinBorrow() {
48+
return userMinBorrow;
49+
}
50+
51+
public void setUserMinBorrow(String userMinBorrow) {
52+
this.userMinBorrow = userMinBorrow;
53+
}
54+
55+
public String getUserMinRepay() {
56+
return userMinRepay;
57+
}
58+
59+
public void setUserMinRepay(String userMinRepay) {
60+
this.userMinRepay = userMinRepay;
61+
}
62+
63+
@Override
64+
public String toString() {
65+
return "CrossMarginAssets{" +
66+
"assetFullName='" + assetFullName + '\'' +
67+
", assetName='" + assetName + '\'' +
68+
", isBorrowable=" + isBorrowable +
69+
", isMortgageable=" + isMortgageable +
70+
", userMinBorrow='" + userMinBorrow + '\'' +
71+
", userMinRepay='" + userMinRepay + '\'' +
72+
'}';
73+
}
74+
}

0 commit comments

Comments
 (0)