org.knowm.xchange.hitbtc.v2.dto.HitbtcSide Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-hitbtc Show documentation
Show all versions of xchange-hitbtc Show documentation
XChange implementation for Hitbtc exchange
The newest version!
package org.knowm.xchange.hitbtc.v2.dto;
import com.fasterxml.jackson.annotation.JsonValue;
public enum HitbtcSide {
BUY("buy"),
SELL("sell");
private final String value;
HitbtcSide(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
@JsonValue
public String toString() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy