-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmodel_bond_tick_data.go
523 lines (444 loc) · 12.7 KB
/
model_bond_tick_data.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
/*
Finnhub API
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
API version: 1.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package finnhub
import (
"encoding/json"
)
// BondTickData struct for BondTickData
type BondTickData struct {
// Number of ticks skipped.
Skip *int64 `json:"skip,omitempty"`
// Number of ticks returned. If <code>count</code> < <code>limit</code>, all data for that date has been returned.
Count *int64 `json:"count,omitempty"`
// Total number of ticks for that date.
Total *int64 `json:"total,omitempty"`
// List of volume data.
V *[]float32 `json:"v,omitempty"`
// List of price data.
P *[]float32 `json:"p,omitempty"`
// List of yield data.
Y *[]float32 `json:"y,omitempty"`
// List of timestamp in UNIX ms.
T *[]int64 `json:"t,omitempty"`
// List of values showing the side (Buy/sell) of each trade. List of supported values: <a target=\"_blank\" href=\"https://docs.google.com/spreadsheets/d/1O3aueXSPOqo7Iuyz4PqDG6yZunHsX8BTefZ2kFk5pz4/edit?usp=sharing\",>here</a>
Si *[]string `json:"si,omitempty"`
// List of values showing the counterparty of each trade. List of supported values: <a target=\"_blank\" href=\"https://docs.google.com/spreadsheets/d/1O3aueXSPOqo7Iuyz4PqDG6yZunHsX8BTefZ2kFk5pz4/edit?usp=sharing\",>here</a>
Cp *[]string `json:"cp,omitempty"`
// List of values showing the reporting party of each trade. List of supported values: <a target=\"_blank\" href=\"https://docs.google.com/spreadsheets/d/1O3aueXSPOqo7Iuyz4PqDG6yZunHsX8BTefZ2kFk5pz4/edit?usp=sharing\",>here</a>
Rp *[]string `json:"rp,omitempty"`
// ATS flag. Y or empty
Ats *[]string `json:"ats,omitempty"`
// List of trade conditions. A comprehensive list of trade conditions code can be found <a target=\"_blank\" href=\"https://docs.google.com/spreadsheets/d/1O3aueXSPOqo7Iuyz4PqDG6yZunHsX8BTefZ2kFk5pz4/edit?usp=sharing\">here</a>
C *[][]string `json:"c,omitempty"`
}
// NewBondTickData instantiates a new BondTickData object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewBondTickData() *BondTickData {
this := BondTickData{}
return &this
}
// NewBondTickDataWithDefaults instantiates a new BondTickData object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewBondTickDataWithDefaults() *BondTickData {
this := BondTickData{}
return &this
}
// GetSkip returns the Skip field value if set, zero value otherwise.
func (o *BondTickData) GetSkip() int64 {
if o == nil || o.Skip == nil {
var ret int64
return ret
}
return *o.Skip
}
// GetSkipOk returns a tuple with the Skip field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetSkipOk() (*int64, bool) {
if o == nil || o.Skip == nil {
return nil, false
}
return o.Skip, true
}
// HasSkip returns a boolean if a field has been set.
func (o *BondTickData) HasSkip() bool {
if o != nil && o.Skip != nil {
return true
}
return false
}
// SetSkip gets a reference to the given int64 and assigns it to the Skip field.
func (o *BondTickData) SetSkip(v int64) {
o.Skip = &v
}
// GetCount returns the Count field value if set, zero value otherwise.
func (o *BondTickData) GetCount() int64 {
if o == nil || o.Count == nil {
var ret int64
return ret
}
return *o.Count
}
// GetCountOk returns a tuple with the Count field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetCountOk() (*int64, bool) {
if o == nil || o.Count == nil {
return nil, false
}
return o.Count, true
}
// HasCount returns a boolean if a field has been set.
func (o *BondTickData) HasCount() bool {
if o != nil && o.Count != nil {
return true
}
return false
}
// SetCount gets a reference to the given int64 and assigns it to the Count field.
func (o *BondTickData) SetCount(v int64) {
o.Count = &v
}
// GetTotal returns the Total field value if set, zero value otherwise.
func (o *BondTickData) GetTotal() int64 {
if o == nil || o.Total == nil {
var ret int64
return ret
}
return *o.Total
}
// GetTotalOk returns a tuple with the Total field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetTotalOk() (*int64, bool) {
if o == nil || o.Total == nil {
return nil, false
}
return o.Total, true
}
// HasTotal returns a boolean if a field has been set.
func (o *BondTickData) HasTotal() bool {
if o != nil && o.Total != nil {
return true
}
return false
}
// SetTotal gets a reference to the given int64 and assigns it to the Total field.
func (o *BondTickData) SetTotal(v int64) {
o.Total = &v
}
// GetV returns the V field value if set, zero value otherwise.
func (o *BondTickData) GetV() []float32 {
if o == nil || o.V == nil {
var ret []float32
return ret
}
return *o.V
}
// GetVOk returns a tuple with the V field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetVOk() (*[]float32, bool) {
if o == nil || o.V == nil {
return nil, false
}
return o.V, true
}
// HasV returns a boolean if a field has been set.
func (o *BondTickData) HasV() bool {
if o != nil && o.V != nil {
return true
}
return false
}
// SetV gets a reference to the given []float32 and assigns it to the V field.
func (o *BondTickData) SetV(v []float32) {
o.V = &v
}
// GetP returns the P field value if set, zero value otherwise.
func (o *BondTickData) GetP() []float32 {
if o == nil || o.P == nil {
var ret []float32
return ret
}
return *o.P
}
// GetPOk returns a tuple with the P field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetPOk() (*[]float32, bool) {
if o == nil || o.P == nil {
return nil, false
}
return o.P, true
}
// HasP returns a boolean if a field has been set.
func (o *BondTickData) HasP() bool {
if o != nil && o.P != nil {
return true
}
return false
}
// SetP gets a reference to the given []float32 and assigns it to the P field.
func (o *BondTickData) SetP(v []float32) {
o.P = &v
}
// GetY returns the Y field value if set, zero value otherwise.
func (o *BondTickData) GetY() []float32 {
if o == nil || o.Y == nil {
var ret []float32
return ret
}
return *o.Y
}
// GetYOk returns a tuple with the Y field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetYOk() (*[]float32, bool) {
if o == nil || o.Y == nil {
return nil, false
}
return o.Y, true
}
// HasY returns a boolean if a field has been set.
func (o *BondTickData) HasY() bool {
if o != nil && o.Y != nil {
return true
}
return false
}
// SetY gets a reference to the given []float32 and assigns it to the Y field.
func (o *BondTickData) SetY(v []float32) {
o.Y = &v
}
// GetT returns the T field value if set, zero value otherwise.
func (o *BondTickData) GetT() []int64 {
if o == nil || o.T == nil {
var ret []int64
return ret
}
return *o.T
}
// GetTOk returns a tuple with the T field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetTOk() (*[]int64, bool) {
if o == nil || o.T == nil {
return nil, false
}
return o.T, true
}
// HasT returns a boolean if a field has been set.
func (o *BondTickData) HasT() bool {
if o != nil && o.T != nil {
return true
}
return false
}
// SetT gets a reference to the given []int64 and assigns it to the T field.
func (o *BondTickData) SetT(v []int64) {
o.T = &v
}
// GetSi returns the Si field value if set, zero value otherwise.
func (o *BondTickData) GetSi() []string {
if o == nil || o.Si == nil {
var ret []string
return ret
}
return *o.Si
}
// GetSiOk returns a tuple with the Si field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetSiOk() (*[]string, bool) {
if o == nil || o.Si == nil {
return nil, false
}
return o.Si, true
}
// HasSi returns a boolean if a field has been set.
func (o *BondTickData) HasSi() bool {
if o != nil && o.Si != nil {
return true
}
return false
}
// SetSi gets a reference to the given []string and assigns it to the Si field.
func (o *BondTickData) SetSi(v []string) {
o.Si = &v
}
// GetCp returns the Cp field value if set, zero value otherwise.
func (o *BondTickData) GetCp() []string {
if o == nil || o.Cp == nil {
var ret []string
return ret
}
return *o.Cp
}
// GetCpOk returns a tuple with the Cp field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetCpOk() (*[]string, bool) {
if o == nil || o.Cp == nil {
return nil, false
}
return o.Cp, true
}
// HasCp returns a boolean if a field has been set.
func (o *BondTickData) HasCp() bool {
if o != nil && o.Cp != nil {
return true
}
return false
}
// SetCp gets a reference to the given []string and assigns it to the Cp field.
func (o *BondTickData) SetCp(v []string) {
o.Cp = &v
}
// GetRp returns the Rp field value if set, zero value otherwise.
func (o *BondTickData) GetRp() []string {
if o == nil || o.Rp == nil {
var ret []string
return ret
}
return *o.Rp
}
// GetRpOk returns a tuple with the Rp field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetRpOk() (*[]string, bool) {
if o == nil || o.Rp == nil {
return nil, false
}
return o.Rp, true
}
// HasRp returns a boolean if a field has been set.
func (o *BondTickData) HasRp() bool {
if o != nil && o.Rp != nil {
return true
}
return false
}
// SetRp gets a reference to the given []string and assigns it to the Rp field.
func (o *BondTickData) SetRp(v []string) {
o.Rp = &v
}
// GetAts returns the Ats field value if set, zero value otherwise.
func (o *BondTickData) GetAts() []string {
if o == nil || o.Ats == nil {
var ret []string
return ret
}
return *o.Ats
}
// GetAtsOk returns a tuple with the Ats field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetAtsOk() (*[]string, bool) {
if o == nil || o.Ats == nil {
return nil, false
}
return o.Ats, true
}
// HasAts returns a boolean if a field has been set.
func (o *BondTickData) HasAts() bool {
if o != nil && o.Ats != nil {
return true
}
return false
}
// SetAts gets a reference to the given []string and assigns it to the Ats field.
func (o *BondTickData) SetAts(v []string) {
o.Ats = &v
}
// GetC returns the C field value if set, zero value otherwise.
func (o *BondTickData) GetC() [][]string {
if o == nil || o.C == nil {
var ret [][]string
return ret
}
return *o.C
}
// GetCOk returns a tuple with the C field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *BondTickData) GetCOk() (*[][]string, bool) {
if o == nil || o.C == nil {
return nil, false
}
return o.C, true
}
// HasC returns a boolean if a field has been set.
func (o *BondTickData) HasC() bool {
if o != nil && o.C != nil {
return true
}
return false
}
// SetC gets a reference to the given [][]string and assigns it to the C field.
func (o *BondTickData) SetC(v [][]string) {
o.C = &v
}
func (o BondTickData) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Skip != nil {
toSerialize["skip"] = o.Skip
}
if o.Count != nil {
toSerialize["count"] = o.Count
}
if o.Total != nil {
toSerialize["total"] = o.Total
}
if o.V != nil {
toSerialize["v"] = o.V
}
if o.P != nil {
toSerialize["p"] = o.P
}
if o.Y != nil {
toSerialize["y"] = o.Y
}
if o.T != nil {
toSerialize["t"] = o.T
}
if o.Si != nil {
toSerialize["si"] = o.Si
}
if o.Cp != nil {
toSerialize["cp"] = o.Cp
}
if o.Rp != nil {
toSerialize["rp"] = o.Rp
}
if o.Ats != nil {
toSerialize["ats"] = o.Ats
}
if o.C != nil {
toSerialize["c"] = o.C
}
return json.Marshal(toSerialize)
}
type NullableBondTickData struct {
value *BondTickData
isSet bool
}
func (v NullableBondTickData) Get() *BondTickData {
return v.value
}
func (v *NullableBondTickData) Set(val *BondTickData) {
v.value = val
v.isSet = true
}
func (v NullableBondTickData) IsSet() bool {
return v.isSet
}
func (v *NullableBondTickData) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableBondTickData(val *BondTickData) *NullableBondTickData {
return &NullableBondTickData{value: val, isSet: true}
}
func (v NullableBondTickData) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableBondTickData) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}