com.binance.api.client.domain.account.MaxBorrowableQueryResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-api-client Show documentation
Show all versions of binance-api-client Show documentation
Java implementation for Binance API
package com.binance.api.client.domain.account;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
/**
* Max Borrow Query Result
*
* @see Withdraw
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class MaxBorrowableQueryResult {
private String amount;
public String getAmount() {
return amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
@Override
public String toString() {
return "MaxBorrowQueryResult{" +
"amount='" + amount + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy