package project.data.websocket.model.market; import java.util.List; public class MarketDepth { private long version; private Long ts; private List bids; private List asks; public long getVersion() { return version; } public void setVersion(long version) { this.version = version; } public Long getTs() { return ts; } public void setTs(Long ts) { this.ts = ts; } public List getBids() { return bids; } public void setBids(List bids) { this.bids = bids; } public List getAsks() { return asks; } public void setAsks(List asks) { this.asks = asks; } }