com.xeiam.xchange.bitmarket.dto.account.BitMarketAccountInfoResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-bitmarket Show documentation
Show all versions of xchange-bitmarket Show documentation
XChange implementation for Bitcoin Bitmarket exchange
The newest version!
package com.xeiam.xchange.bitmarket.dto.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.xeiam.xchange.bitmarket.dto.BitMarketAPILimit;
import com.xeiam.xchange.bitmarket.dto.BitMarketBaseResponse;
/**
* @author kfonal
*/
public class BitMarketAccountInfoResponse extends BitMarketBaseResponse {
public BitMarketAccountInfoResponse(@JsonProperty("success") boolean success, @JsonProperty("data") BitMarketAccountInfo accountInfo,
@JsonProperty("limit") BitMarketAPILimit limit, @JsonProperty("error") int error, @JsonProperty("errorMsg") String errorMsg) {
super(success, accountInfo, limit, error, errorMsg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy