
org.knowm.xchange.binance.dto.account.AssetDetailResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-binance Show documentation
Show all versions of xchange-binance Show documentation
Development fork. Not for general use.
The newest version!
package org.knowm.xchange.binance.dto.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
public class AssetDetailResponse {
private final boolean success;
private final Map assetDetail;
public AssetDetailResponse(
@JsonProperty("success") boolean success,
@JsonProperty("assetDetail") Map assetDetail) {
this.success = success;
this.assetDetail = assetDetail;
}
public boolean isSuccess() {
return success;
}
public Map getAssetDetail() {
return assetDetail;
}
@Override
public String toString() {
return "AssetDetailResponse{"
+ "success = '"
+ success
+ '\''
+ ",assetDetail = '"
+ assetDetail
+ '\''
+ "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy