1 package org.oxerr.okcoin.rest.dto;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 public class LendDepth extends BaseObject {
6
7 private static final long serialVersionUID = 2015022001L;
8
9 private final Lend[] lendDepth;
10
11 public LendDepth(@JsonProperty("lend_depth") Lend[] lendDepth) {
12 this.lendDepth = lendDepth;
13 }
14
15 public Lend[] getLendDepth() {
16 return lendDepth;
17 }
18
19 }