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

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
truonghatsts committed Oct 3, 2020
1 parent 8524e77 commit c9ff0d9
Showing 1 changed file with 74 additions and 0 deletions.
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 + '\'' +
'}';
}
}

0 comments on commit c9ff0d9

Please sign in to comment.