package to.sparks.mtgox.model; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.JsonProperty; /** * * @author SparksG */ @JsonAutoDetect public class OpPrivateDepth extends OpPrivate<Depth> { private Depth depth; public OpPrivateDepth(@JsonProperty("op") String op, @JsonProperty("channel") String channel, @JsonProperty("channel_name") String channel_name, @JsonProperty("private") String messageType, @JsonProperty("depth") Depth depth, @JsonProperty("origin") String origin) { super(op, channel, channel_name, messageType, origin); this.depth = depth; } public Depth getDepth() { return depth; } }