1 package org.oxerr.huobi.fix.fix44;
2
3 import org.oxerr.huobi.fix.field.AccReqID;
4 import org.oxerr.huobi.fix.field.AvailableBtc;
5 import org.oxerr.huobi.fix.field.AvailableCny;
6 import org.oxerr.huobi.fix.field.AvailableLtc;
7 import org.oxerr.huobi.fix.field.FrozenBtc;
8 import org.oxerr.huobi.fix.field.FrozenCny;
9 import org.oxerr.huobi.fix.field.FrozenLtc;
10
11 import quickfix.FieldNotFound;
12 import quickfix.field.Account;
13 import quickfix.field.MsgType;
14
15
16
17
18 public class AccountInfoResponse extends quickfix.fix44.Message {
19
20 private static final long serialVersionUID = 20141101L;
21
22 public static final String MSGTYPE = "Z1001";
23
24 public AccountInfoResponse() {
25 getHeader().setField(new MsgType(MSGTYPE));
26 }
27
28 public void set(Account value) {
29 setField(value);
30 }
31
32 public Account get(Account value) throws FieldNotFound {
33 getField(value);
34 return value;
35 }
36
37 public Account getAccount() throws FieldNotFound {
38 Account value = new Account();
39 getField(value);
40 return value;
41 }
42
43 public boolean isSet(Account field) {
44 return isSetField(field);
45 }
46
47 public boolean isSetAccount() {
48 return isSetField(Account.FIELD);
49 }
50
51 public void set(AccReqID value) {
52 setField(value);
53 }
54
55 public AccReqID get(AccReqID value) throws FieldNotFound {
56 getField(value);
57 return value;
58 }
59
60 public AccReqID getAccReqID() throws FieldNotFound {
61 AccReqID value = new AccReqID();
62 getField(value);
63 return value;
64 }
65
66 public boolean isSet(AccReqID field) {
67 return isSetField(field);
68 }
69
70 public boolean isSetAccReqID() {
71 return isSetField(AccReqID.FIELD);
72 }
73
74 public void set(AvailableCny value) {
75 setField(value);
76 }
77
78 public AvailableCny get(AvailableCny value) throws FieldNotFound {
79 getField(value);
80 return value;
81 }
82
83 public AvailableCny getAvailableCny() throws FieldNotFound {
84 AvailableCny value = new AvailableCny();
85 getField(value);
86 return value;
87 }
88
89 public boolean isSet(AvailableCny field) {
90 return isSetField(field);
91 }
92
93 public boolean isSetAvailableCny() {
94 return isSetField(AvailableCny.FIELD);
95 }
96
97 public void set(AvailableBtc value) {
98 setField(value);
99 }
100
101 public AvailableBtc get(AvailableBtc value) throws FieldNotFound {
102 getField(value);
103 return value;
104 }
105
106 public AvailableBtc getAvailableBtc() throws FieldNotFound {
107 AvailableBtc value = new AvailableBtc();
108 getField(value);
109 return value;
110 }
111
112 public boolean isSet(AvailableBtc field) {
113 return isSetField(field);
114 }
115
116 public boolean isSetAvailableBtc() {
117 return isSetField(AvailableBtc.FIELD);
118 }
119
120 public void set(AvailableLtc value) {
121 setField(value);
122 }
123
124 public AvailableLtc get(AvailableLtc value) throws FieldNotFound {
125 getField(value);
126 return value;
127 }
128
129 public AvailableLtc getAvailableLtc() throws FieldNotFound {
130 AvailableLtc value = new AvailableLtc();
131 getField(value);
132 return value;
133 }
134
135 public boolean isSet(AvailableLtc field) {
136 return isSetField(field);
137 }
138
139 public boolean isSetAvailableLtc() {
140 return isSetField(AvailableLtc.FIELD);
141 }
142
143 public void set(FrozenLtc value) {
144 setField(value);
145 }
146
147 public FrozenLtc get(FrozenLtc value) throws FieldNotFound {
148 getField(value);
149 return value;
150 }
151
152 public FrozenLtc getFrozenLtc() throws FieldNotFound {
153 FrozenLtc value = new FrozenLtc();
154 getField(value);
155 return value;
156 }
157
158 public boolean isSet(FrozenLtc field) {
159 return isSetField(field);
160 }
161
162 public boolean isSetFrozenLtc() {
163 return isSetField(FrozenLtc.FIELD);
164 }
165
166 public void set(FrozenBtc value) {
167 setField(value);
168 }
169
170 public FrozenBtc get(FrozenBtc value) throws FieldNotFound {
171 getField(value);
172 return value;
173 }
174
175 public FrozenBtc getFrozenBtc() throws FieldNotFound {
176 FrozenBtc value = new FrozenBtc();
177 getField(value);
178 return value;
179 }
180
181 public boolean isSet(FrozenBtc field) {
182 return isSetField(field);
183 }
184
185 public boolean isSetFrozenBtc() {
186 return isSetField(FrozenBtc.FIELD);
187 }
188
189 public void set(FrozenCny value) {
190 setField(value);
191 }
192
193 public FrozenCny get(FrozenCny value) throws FieldNotFound {
194 getField(value);
195 return value;
196 }
197
198 public FrozenCny getFrozenCny() throws FieldNotFound {
199 FrozenCny value = new FrozenCny();
200 getField(value);
201 return value;
202 }
203
204 public boolean isSet(FrozenCny field) {
205 return isSetField(field);
206 }
207
208 public boolean isSetFrozenCny() {
209 return isSetField(FrozenCny.FIELD);
210 }
211
212 }