org.knowm.xchange.therock.dto.trade.TheRockMetaItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-therock Show documentation
Show all versions of xchange-therock Show documentation
XChange implementation for The Rock Trading Exchange
package org.knowm.xchange.therock.dto.trade;
import com.fasterxml.jackson.databind.PropertyNamingStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
/** @author Pnk */
@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)
public class TheRockMetaItem {
private int page;
private String href;
public int getPage() {
return page;
}
public String getHref() {
return href;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy