org.knowm.xchange.livecoin.dto.LivecoinResponseWithDataMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-livecoin Show documentation
Show all versions of xchange-livecoin Show documentation
A convenient way to buy and sell Bitcoin
package org.knowm.xchange.livecoin.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
/** @author walec51 */
public class LivecoinResponseWithDataMap extends LivecoinBaseResponse {
private final Map data;
public LivecoinResponseWithDataMap(
@JsonProperty("success") Boolean success, @JsonProperty("data") Map data) {
super(success);
this.data = data;
}
public Map getData() {
return data;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy