org.knowm.xchange.therock.dto.trade.TheRockOrders 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.LowerCaseWithUnderscoresStrategy.class)
public class TheRockOrders {
private TheRockOrder[] orders;
private TheRockMeta meta;
protected TheRockOrders() {}
public TheRockOrders(TheRockOrder[] orders) {
this.orders = orders;
}
public TheRockOrder[] getOrders() {
return orders;
}
public TheRockMeta getMeta() {
return meta;
}
}