org.knowm.xchange.bl3p.dto.Bl3pResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-bl3p Show documentation
Show all versions of xchange-bl3p Show documentation
XChange implementation for the Bl3p Exchange
The newest version!
package org.knowm.xchange.bl3p.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Bl3pResult {
@JsonProperty("result")
private String result;
@JsonProperty("data")
private DataType data;
public String getResult() {
return result;
}
public DataType getData() {
return data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy