forked from quickfixgo/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OrderMassStatusRequest.generated.go
2343 lines (1967 loc) · 74 KB
/
OrderMassStatusRequest.generated.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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package ordermassstatusrequest
import (
"github.com/shopspring/decimal"
"github.com/Boklazhenko/quickfix"
"github.com/Boklazhenko/quickfix/gen/enum"
"github.com/Boklazhenko/quickfix/gen/field"
"github.com/Boklazhenko/quickfix/gen/fix44"
"github.com/Boklazhenko/quickfix/gen/tag"
)
// OrderMassStatusRequest is the fix44 OrderMassStatusRequest type, MsgType = AF.
type OrderMassStatusRequest struct {
fix44.Header
*quickfix.Body
fix44.Trailer
Message *quickfix.Message
}
// FromMessage creates a OrderMassStatusRequest from a quickfix.Message instance.
func FromMessage(m *quickfix.Message) OrderMassStatusRequest {
return OrderMassStatusRequest{
Header: fix44.Header{&m.Header},
Body: &m.Body,
Trailer: fix44.Trailer{&m.Trailer},
Message: m,
}
}
// ToMessage returns a quickfix.Message instance.
func (m OrderMassStatusRequest) ToMessage() *quickfix.Message {
return m.Message
}
// New returns a OrderMassStatusRequest initialized with the required fields for OrderMassStatusRequest.
func New(massstatusreqid field.MassStatusReqIDField, massstatusreqtype field.MassStatusReqTypeField) (m OrderMassStatusRequest) {
m.Message = quickfix.NewMessage()
m.Header = fix44.NewHeader(&m.Message.Header)
m.Body = &m.Message.Body
m.Trailer.Trailer = &m.Message.Trailer
m.Header.Set(field.NewMsgType("AF"))
m.Set(massstatusreqid)
m.Set(massstatusreqtype)
return
}
// A RouteOut is the callback type that should be implemented for routing Message.
type RouteOut func(msg OrderMassStatusRequest, sessionID quickfix.SessionID) quickfix.MessageRejectError
// Route returns the beginstring, message type, and MessageRoute for this Message type.
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
r := func(msg *quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
return router(FromMessage(msg), sessionID)
}
return "FIX.4.4", "AF", r
}
// SetAccount sets Account, Tag 1.
func (m OrderMassStatusRequest) SetAccount(v string) {
m.Set(field.NewAccount(v))
}
// SetSecurityIDSource sets SecurityIDSource, Tag 22.
func (m OrderMassStatusRequest) SetSecurityIDSource(v enum.SecurityIDSource) {
m.Set(field.NewSecurityIDSource(v))
}
// SetSecurityID sets SecurityID, Tag 48.
func (m OrderMassStatusRequest) SetSecurityID(v string) {
m.Set(field.NewSecurityID(v))
}
// SetSide sets Side, Tag 54.
func (m OrderMassStatusRequest) SetSide(v enum.Side) {
m.Set(field.NewSide(v))
}
// SetSymbol sets Symbol, Tag 55.
func (m OrderMassStatusRequest) SetSymbol(v string) {
m.Set(field.NewSymbol(v))
}
// SetSymbolSfx sets SymbolSfx, Tag 65.
func (m OrderMassStatusRequest) SetSymbolSfx(v enum.SymbolSfx) {
m.Set(field.NewSymbolSfx(v))
}
// SetIssuer sets Issuer, Tag 106.
func (m OrderMassStatusRequest) SetIssuer(v string) {
m.Set(field.NewIssuer(v))
}
// SetSecurityDesc sets SecurityDesc, Tag 107.
func (m OrderMassStatusRequest) SetSecurityDesc(v string) {
m.Set(field.NewSecurityDesc(v))
}
// SetSecurityType sets SecurityType, Tag 167.
func (m OrderMassStatusRequest) SetSecurityType(v enum.SecurityType) {
m.Set(field.NewSecurityType(v))
}
// SetMaturityMonthYear sets MaturityMonthYear, Tag 200.
func (m OrderMassStatusRequest) SetMaturityMonthYear(v string) {
m.Set(field.NewMaturityMonthYear(v))
}
// SetStrikePrice sets StrikePrice, Tag 202.
func (m OrderMassStatusRequest) SetStrikePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewStrikePrice(value, scale))
}
// SetOptAttribute sets OptAttribute, Tag 206.
func (m OrderMassStatusRequest) SetOptAttribute(v string) {
m.Set(field.NewOptAttribute(v))
}
// SetSecurityExchange sets SecurityExchange, Tag 207.
func (m OrderMassStatusRequest) SetSecurityExchange(v string) {
m.Set(field.NewSecurityExchange(v))
}
// SetCouponRate sets CouponRate, Tag 223.
func (m OrderMassStatusRequest) SetCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewCouponRate(value, scale))
}
// SetCouponPaymentDate sets CouponPaymentDate, Tag 224.
func (m OrderMassStatusRequest) SetCouponPaymentDate(v string) {
m.Set(field.NewCouponPaymentDate(v))
}
// SetIssueDate sets IssueDate, Tag 225.
func (m OrderMassStatusRequest) SetIssueDate(v string) {
m.Set(field.NewIssueDate(v))
}
// SetRepurchaseTerm sets RepurchaseTerm, Tag 226.
func (m OrderMassStatusRequest) SetRepurchaseTerm(v int) {
m.Set(field.NewRepurchaseTerm(v))
}
// SetRepurchaseRate sets RepurchaseRate, Tag 227.
func (m OrderMassStatusRequest) SetRepurchaseRate(value decimal.Decimal, scale int32) {
m.Set(field.NewRepurchaseRate(value, scale))
}
// SetFactor sets Factor, Tag 228.
func (m OrderMassStatusRequest) SetFactor(value decimal.Decimal, scale int32) {
m.Set(field.NewFactor(value, scale))
}
// SetContractMultiplier sets ContractMultiplier, Tag 231.
func (m OrderMassStatusRequest) SetContractMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewContractMultiplier(value, scale))
}
// SetRepoCollateralSecurityType sets RepoCollateralSecurityType, Tag 239.
func (m OrderMassStatusRequest) SetRepoCollateralSecurityType(v int) {
m.Set(field.NewRepoCollateralSecurityType(v))
}
// SetRedemptionDate sets RedemptionDate, Tag 240.
func (m OrderMassStatusRequest) SetRedemptionDate(v string) {
m.Set(field.NewRedemptionDate(v))
}
// SetUnderlyingCouponPaymentDate sets UnderlyingCouponPaymentDate, Tag 241.
func (m OrderMassStatusRequest) SetUnderlyingCouponPaymentDate(v string) {
m.Set(field.NewUnderlyingCouponPaymentDate(v))
}
// SetUnderlyingIssueDate sets UnderlyingIssueDate, Tag 242.
func (m OrderMassStatusRequest) SetUnderlyingIssueDate(v string) {
m.Set(field.NewUnderlyingIssueDate(v))
}
// SetUnderlyingRepoCollateralSecurityType sets UnderlyingRepoCollateralSecurityType, Tag 243.
func (m OrderMassStatusRequest) SetUnderlyingRepoCollateralSecurityType(v int) {
m.Set(field.NewUnderlyingRepoCollateralSecurityType(v))
}
// SetUnderlyingRepurchaseTerm sets UnderlyingRepurchaseTerm, Tag 244.
func (m OrderMassStatusRequest) SetUnderlyingRepurchaseTerm(v int) {
m.Set(field.NewUnderlyingRepurchaseTerm(v))
}
// SetUnderlyingRepurchaseRate sets UnderlyingRepurchaseRate, Tag 245.
func (m OrderMassStatusRequest) SetUnderlyingRepurchaseRate(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingRepurchaseRate(value, scale))
}
// SetUnderlyingFactor sets UnderlyingFactor, Tag 246.
func (m OrderMassStatusRequest) SetUnderlyingFactor(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingFactor(value, scale))
}
// SetUnderlyingRedemptionDate sets UnderlyingRedemptionDate, Tag 247.
func (m OrderMassStatusRequest) SetUnderlyingRedemptionDate(v string) {
m.Set(field.NewUnderlyingRedemptionDate(v))
}
// SetCreditRating sets CreditRating, Tag 255.
func (m OrderMassStatusRequest) SetCreditRating(v string) {
m.Set(field.NewCreditRating(v))
}
// SetUnderlyingCreditRating sets UnderlyingCreditRating, Tag 256.
func (m OrderMassStatusRequest) SetUnderlyingCreditRating(v string) {
m.Set(field.NewUnderlyingCreditRating(v))
}
// SetUnderlyingSecurityIDSource sets UnderlyingSecurityIDSource, Tag 305.
func (m OrderMassStatusRequest) SetUnderlyingSecurityIDSource(v string) {
m.Set(field.NewUnderlyingSecurityIDSource(v))
}
// SetUnderlyingIssuer sets UnderlyingIssuer, Tag 306.
func (m OrderMassStatusRequest) SetUnderlyingIssuer(v string) {
m.Set(field.NewUnderlyingIssuer(v))
}
// SetUnderlyingSecurityDesc sets UnderlyingSecurityDesc, Tag 307.
func (m OrderMassStatusRequest) SetUnderlyingSecurityDesc(v string) {
m.Set(field.NewUnderlyingSecurityDesc(v))
}
// SetUnderlyingSecurityExchange sets UnderlyingSecurityExchange, Tag 308.
func (m OrderMassStatusRequest) SetUnderlyingSecurityExchange(v string) {
m.Set(field.NewUnderlyingSecurityExchange(v))
}
// SetUnderlyingSecurityID sets UnderlyingSecurityID, Tag 309.
func (m OrderMassStatusRequest) SetUnderlyingSecurityID(v string) {
m.Set(field.NewUnderlyingSecurityID(v))
}
// SetUnderlyingSecurityType sets UnderlyingSecurityType, Tag 310.
func (m OrderMassStatusRequest) SetUnderlyingSecurityType(v string) {
m.Set(field.NewUnderlyingSecurityType(v))
}
// SetUnderlyingSymbol sets UnderlyingSymbol, Tag 311.
func (m OrderMassStatusRequest) SetUnderlyingSymbol(v string) {
m.Set(field.NewUnderlyingSymbol(v))
}
// SetUnderlyingSymbolSfx sets UnderlyingSymbolSfx, Tag 312.
func (m OrderMassStatusRequest) SetUnderlyingSymbolSfx(v string) {
m.Set(field.NewUnderlyingSymbolSfx(v))
}
// SetUnderlyingMaturityMonthYear sets UnderlyingMaturityMonthYear, Tag 313.
func (m OrderMassStatusRequest) SetUnderlyingMaturityMonthYear(v string) {
m.Set(field.NewUnderlyingMaturityMonthYear(v))
}
// SetUnderlyingStrikePrice sets UnderlyingStrikePrice, Tag 316.
func (m OrderMassStatusRequest) SetUnderlyingStrikePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingStrikePrice(value, scale))
}
// SetUnderlyingOptAttribute sets UnderlyingOptAttribute, Tag 317.
func (m OrderMassStatusRequest) SetUnderlyingOptAttribute(v string) {
m.Set(field.NewUnderlyingOptAttribute(v))
}
// SetUnderlyingCurrency sets UnderlyingCurrency, Tag 318.
func (m OrderMassStatusRequest) SetUnderlyingCurrency(v string) {
m.Set(field.NewUnderlyingCurrency(v))
}
// SetTradingSessionID sets TradingSessionID, Tag 336.
func (m OrderMassStatusRequest) SetTradingSessionID(v enum.TradingSessionID) {
m.Set(field.NewTradingSessionID(v))
}
// SetEncodedIssuerLen sets EncodedIssuerLen, Tag 348.
func (m OrderMassStatusRequest) SetEncodedIssuerLen(v int) {
m.Set(field.NewEncodedIssuerLen(v))
}
// SetEncodedIssuer sets EncodedIssuer, Tag 349.
func (m OrderMassStatusRequest) SetEncodedIssuer(v string) {
m.Set(field.NewEncodedIssuer(v))
}
// SetEncodedSecurityDescLen sets EncodedSecurityDescLen, Tag 350.
func (m OrderMassStatusRequest) SetEncodedSecurityDescLen(v int) {
m.Set(field.NewEncodedSecurityDescLen(v))
}
// SetEncodedSecurityDesc sets EncodedSecurityDesc, Tag 351.
func (m OrderMassStatusRequest) SetEncodedSecurityDesc(v string) {
m.Set(field.NewEncodedSecurityDesc(v))
}
// SetEncodedUnderlyingIssuerLen sets EncodedUnderlyingIssuerLen, Tag 362.
func (m OrderMassStatusRequest) SetEncodedUnderlyingIssuerLen(v int) {
m.Set(field.NewEncodedUnderlyingIssuerLen(v))
}
// SetEncodedUnderlyingIssuer sets EncodedUnderlyingIssuer, Tag 363.
func (m OrderMassStatusRequest) SetEncodedUnderlyingIssuer(v string) {
m.Set(field.NewEncodedUnderlyingIssuer(v))
}
// SetEncodedUnderlyingSecurityDescLen sets EncodedUnderlyingSecurityDescLen, Tag 364.
func (m OrderMassStatusRequest) SetEncodedUnderlyingSecurityDescLen(v int) {
m.Set(field.NewEncodedUnderlyingSecurityDescLen(v))
}
// SetEncodedUnderlyingSecurityDesc sets EncodedUnderlyingSecurityDesc, Tag 365.
func (m OrderMassStatusRequest) SetEncodedUnderlyingSecurityDesc(v string) {
m.Set(field.NewEncodedUnderlyingSecurityDesc(v))
}
// SetUnderlyingCouponRate sets UnderlyingCouponRate, Tag 435.
func (m OrderMassStatusRequest) SetUnderlyingCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingCouponRate(value, scale))
}
// SetUnderlyingContractMultiplier sets UnderlyingContractMultiplier, Tag 436.
func (m OrderMassStatusRequest) SetUnderlyingContractMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingContractMultiplier(value, scale))
}
// SetNoPartyIDs sets NoPartyIDs, Tag 453.
func (m OrderMassStatusRequest) SetNoPartyIDs(f NoPartyIDsRepeatingGroup) {
m.SetGroup(f)
}
// SetNoSecurityAltID sets NoSecurityAltID, Tag 454.
func (m OrderMassStatusRequest) SetNoSecurityAltID(f NoSecurityAltIDRepeatingGroup) {
m.SetGroup(f)
}
// SetNoUnderlyingSecurityAltID sets NoUnderlyingSecurityAltID, Tag 457.
func (m OrderMassStatusRequest) SetNoUnderlyingSecurityAltID(f NoUnderlyingSecurityAltIDRepeatingGroup) {
m.SetGroup(f)
}
// SetProduct sets Product, Tag 460.
func (m OrderMassStatusRequest) SetProduct(v enum.Product) {
m.Set(field.NewProduct(v))
}
// SetCFICode sets CFICode, Tag 461.
func (m OrderMassStatusRequest) SetCFICode(v string) {
m.Set(field.NewCFICode(v))
}
// SetUnderlyingProduct sets UnderlyingProduct, Tag 462.
func (m OrderMassStatusRequest) SetUnderlyingProduct(v int) {
m.Set(field.NewUnderlyingProduct(v))
}
// SetUnderlyingCFICode sets UnderlyingCFICode, Tag 463.
func (m OrderMassStatusRequest) SetUnderlyingCFICode(v string) {
m.Set(field.NewUnderlyingCFICode(v))
}
// SetCountryOfIssue sets CountryOfIssue, Tag 470.
func (m OrderMassStatusRequest) SetCountryOfIssue(v string) {
m.Set(field.NewCountryOfIssue(v))
}
// SetStateOrProvinceOfIssue sets StateOrProvinceOfIssue, Tag 471.
func (m OrderMassStatusRequest) SetStateOrProvinceOfIssue(v string) {
m.Set(field.NewStateOrProvinceOfIssue(v))
}
// SetLocaleOfIssue sets LocaleOfIssue, Tag 472.
func (m OrderMassStatusRequest) SetLocaleOfIssue(v string) {
m.Set(field.NewLocaleOfIssue(v))
}
// SetMaturityDate sets MaturityDate, Tag 541.
func (m OrderMassStatusRequest) SetMaturityDate(v string) {
m.Set(field.NewMaturityDate(v))
}
// SetUnderlyingMaturityDate sets UnderlyingMaturityDate, Tag 542.
func (m OrderMassStatusRequest) SetUnderlyingMaturityDate(v string) {
m.Set(field.NewUnderlyingMaturityDate(v))
}
// SetInstrRegistry sets InstrRegistry, Tag 543.
func (m OrderMassStatusRequest) SetInstrRegistry(v enum.InstrRegistry) {
m.Set(field.NewInstrRegistry(v))
}
// SetMassStatusReqID sets MassStatusReqID, Tag 584.
func (m OrderMassStatusRequest) SetMassStatusReqID(v string) {
m.Set(field.NewMassStatusReqID(v))
}
// SetMassStatusReqType sets MassStatusReqType, Tag 585.
func (m OrderMassStatusRequest) SetMassStatusReqType(v enum.MassStatusReqType) {
m.Set(field.NewMassStatusReqType(v))
}
// SetUnderlyingCountryOfIssue sets UnderlyingCountryOfIssue, Tag 592.
func (m OrderMassStatusRequest) SetUnderlyingCountryOfIssue(v string) {
m.Set(field.NewUnderlyingCountryOfIssue(v))
}
// SetUnderlyingStateOrProvinceOfIssue sets UnderlyingStateOrProvinceOfIssue, Tag 593.
func (m OrderMassStatusRequest) SetUnderlyingStateOrProvinceOfIssue(v string) {
m.Set(field.NewUnderlyingStateOrProvinceOfIssue(v))
}
// SetUnderlyingLocaleOfIssue sets UnderlyingLocaleOfIssue, Tag 594.
func (m OrderMassStatusRequest) SetUnderlyingLocaleOfIssue(v string) {
m.Set(field.NewUnderlyingLocaleOfIssue(v))
}
// SetUnderlyingInstrRegistry sets UnderlyingInstrRegistry, Tag 595.
func (m OrderMassStatusRequest) SetUnderlyingInstrRegistry(v string) {
m.Set(field.NewUnderlyingInstrRegistry(v))
}
// SetTradingSessionSubID sets TradingSessionSubID, Tag 625.
func (m OrderMassStatusRequest) SetTradingSessionSubID(v enum.TradingSessionSubID) {
m.Set(field.NewTradingSessionSubID(v))
}
// SetAcctIDSource sets AcctIDSource, Tag 660.
func (m OrderMassStatusRequest) SetAcctIDSource(v enum.AcctIDSource) {
m.Set(field.NewAcctIDSource(v))
}
// SetContractSettlMonth sets ContractSettlMonth, Tag 667.
func (m OrderMassStatusRequest) SetContractSettlMonth(v string) {
m.Set(field.NewContractSettlMonth(v))
}
// SetPool sets Pool, Tag 691.
func (m OrderMassStatusRequest) SetPool(v string) {
m.Set(field.NewPool(v))
}
// SetSecuritySubType sets SecuritySubType, Tag 762.
func (m OrderMassStatusRequest) SetSecuritySubType(v string) {
m.Set(field.NewSecuritySubType(v))
}
// SetUnderlyingSecuritySubType sets UnderlyingSecuritySubType, Tag 763.
func (m OrderMassStatusRequest) SetUnderlyingSecuritySubType(v string) {
m.Set(field.NewUnderlyingSecuritySubType(v))
}
// SetUnderlyingPx sets UnderlyingPx, Tag 810.
func (m OrderMassStatusRequest) SetUnderlyingPx(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingPx(value, scale))
}
// SetNoEvents sets NoEvents, Tag 864.
func (m OrderMassStatusRequest) SetNoEvents(f NoEventsRepeatingGroup) {
m.SetGroup(f)
}
// SetDatedDate sets DatedDate, Tag 873.
func (m OrderMassStatusRequest) SetDatedDate(v string) {
m.Set(field.NewDatedDate(v))
}
// SetInterestAccrualDate sets InterestAccrualDate, Tag 874.
func (m OrderMassStatusRequest) SetInterestAccrualDate(v string) {
m.Set(field.NewInterestAccrualDate(v))
}
// SetCPProgram sets CPProgram, Tag 875.
func (m OrderMassStatusRequest) SetCPProgram(v enum.CPProgram) {
m.Set(field.NewCPProgram(v))
}
// SetCPRegType sets CPRegType, Tag 876.
func (m OrderMassStatusRequest) SetCPRegType(v string) {
m.Set(field.NewCPRegType(v))
}
// SetUnderlyingCPProgram sets UnderlyingCPProgram, Tag 877.
func (m OrderMassStatusRequest) SetUnderlyingCPProgram(v string) {
m.Set(field.NewUnderlyingCPProgram(v))
}
// SetUnderlyingCPRegType sets UnderlyingCPRegType, Tag 878.
func (m OrderMassStatusRequest) SetUnderlyingCPRegType(v string) {
m.Set(field.NewUnderlyingCPRegType(v))
}
// SetUnderlyingQty sets UnderlyingQty, Tag 879.
func (m OrderMassStatusRequest) SetUnderlyingQty(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingQty(value, scale))
}
// SetUnderlyingDirtyPrice sets UnderlyingDirtyPrice, Tag 882.
func (m OrderMassStatusRequest) SetUnderlyingDirtyPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingDirtyPrice(value, scale))
}
// SetUnderlyingEndPrice sets UnderlyingEndPrice, Tag 883.
func (m OrderMassStatusRequest) SetUnderlyingEndPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingEndPrice(value, scale))
}
// SetUnderlyingStartValue sets UnderlyingStartValue, Tag 884.
func (m OrderMassStatusRequest) SetUnderlyingStartValue(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingStartValue(value, scale))
}
// SetUnderlyingCurrentValue sets UnderlyingCurrentValue, Tag 885.
func (m OrderMassStatusRequest) SetUnderlyingCurrentValue(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingCurrentValue(value, scale))
}
// SetUnderlyingEndValue sets UnderlyingEndValue, Tag 886.
func (m OrderMassStatusRequest) SetUnderlyingEndValue(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingEndValue(value, scale))
}
// SetNoUnderlyingStips sets NoUnderlyingStips, Tag 887.
func (m OrderMassStatusRequest) SetNoUnderlyingStips(f NoUnderlyingStipsRepeatingGroup) {
m.SetGroup(f)
}
// SetUnderlyingStrikeCurrency sets UnderlyingStrikeCurrency, Tag 941.
func (m OrderMassStatusRequest) SetUnderlyingStrikeCurrency(v string) {
m.Set(field.NewUnderlyingStrikeCurrency(v))
}
// SetStrikeCurrency sets StrikeCurrency, Tag 947.
func (m OrderMassStatusRequest) SetStrikeCurrency(v string) {
m.Set(field.NewStrikeCurrency(v))
}
// GetAccount gets Account, Tag 1.
func (m OrderMassStatusRequest) GetAccount() (v string, err quickfix.MessageRejectError) {
var f field.AccountField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityIDSource gets SecurityIDSource, Tag 22.
func (m OrderMassStatusRequest) GetSecurityIDSource() (v enum.SecurityIDSource, err quickfix.MessageRejectError) {
var f field.SecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityID gets SecurityID, Tag 48.
func (m OrderMassStatusRequest) GetSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.SecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSide gets Side, Tag 54.
func (m OrderMassStatusRequest) GetSide() (v enum.Side, err quickfix.MessageRejectError) {
var f field.SideField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSymbol gets Symbol, Tag 55.
func (m OrderMassStatusRequest) GetSymbol() (v string, err quickfix.MessageRejectError) {
var f field.SymbolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSymbolSfx gets SymbolSfx, Tag 65.
func (m OrderMassStatusRequest) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError) {
var f field.SymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetIssuer gets Issuer, Tag 106.
func (m OrderMassStatusRequest) GetIssuer() (v string, err quickfix.MessageRejectError) {
var f field.IssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityDesc gets SecurityDesc, Tag 107.
func (m OrderMassStatusRequest) GetSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.SecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityType gets SecurityType, Tag 167.
func (m OrderMassStatusRequest) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError) {
var f field.SecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMaturityMonthYear gets MaturityMonthYear, Tag 200.
func (m OrderMassStatusRequest) GetMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
var f field.MaturityMonthYearField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetStrikePrice gets StrikePrice, Tag 202.
func (m OrderMassStatusRequest) GetStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.StrikePriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOptAttribute gets OptAttribute, Tag 206.
func (m OrderMassStatusRequest) GetOptAttribute() (v string, err quickfix.MessageRejectError) {
var f field.OptAttributeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityExchange gets SecurityExchange, Tag 207.
func (m OrderMassStatusRequest) GetSecurityExchange() (v string, err quickfix.MessageRejectError) {
var f field.SecurityExchangeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCouponRate gets CouponRate, Tag 223.
func (m OrderMassStatusRequest) GetCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.CouponRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCouponPaymentDate gets CouponPaymentDate, Tag 224.
func (m OrderMassStatusRequest) GetCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
var f field.CouponPaymentDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetIssueDate gets IssueDate, Tag 225.
func (m OrderMassStatusRequest) GetIssueDate() (v string, err quickfix.MessageRejectError) {
var f field.IssueDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRepurchaseTerm gets RepurchaseTerm, Tag 226.
func (m OrderMassStatusRequest) GetRepurchaseTerm() (v int, err quickfix.MessageRejectError) {
var f field.RepurchaseTermField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRepurchaseRate gets RepurchaseRate, Tag 227.
func (m OrderMassStatusRequest) GetRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.RepurchaseRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetFactor gets Factor, Tag 228.
func (m OrderMassStatusRequest) GetFactor() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.FactorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetContractMultiplier gets ContractMultiplier, Tag 231.
func (m OrderMassStatusRequest) GetContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.ContractMultiplierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRepoCollateralSecurityType gets RepoCollateralSecurityType, Tag 239.
func (m OrderMassStatusRequest) GetRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError) {
var f field.RepoCollateralSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRedemptionDate gets RedemptionDate, Tag 240.
func (m OrderMassStatusRequest) GetRedemptionDate() (v string, err quickfix.MessageRejectError) {
var f field.RedemptionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCouponPaymentDate gets UnderlyingCouponPaymentDate, Tag 241.
func (m OrderMassStatusRequest) GetUnderlyingCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCouponPaymentDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingIssueDate gets UnderlyingIssueDate, Tag 242.
func (m OrderMassStatusRequest) GetUnderlyingIssueDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingIssueDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRepoCollateralSecurityType gets UnderlyingRepoCollateralSecurityType, Tag 243.
func (m OrderMassStatusRequest) GetUnderlyingRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError) {
var f field.UnderlyingRepoCollateralSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRepurchaseTerm gets UnderlyingRepurchaseTerm, Tag 244.
func (m OrderMassStatusRequest) GetUnderlyingRepurchaseTerm() (v int, err quickfix.MessageRejectError) {
var f field.UnderlyingRepurchaseTermField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRepurchaseRate gets UnderlyingRepurchaseRate, Tag 245.
func (m OrderMassStatusRequest) GetUnderlyingRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingRepurchaseRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingFactor gets UnderlyingFactor, Tag 246.
func (m OrderMassStatusRequest) GetUnderlyingFactor() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingFactorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRedemptionDate gets UnderlyingRedemptionDate, Tag 247.
func (m OrderMassStatusRequest) GetUnderlyingRedemptionDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingRedemptionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCreditRating gets CreditRating, Tag 255.
func (m OrderMassStatusRequest) GetCreditRating() (v string, err quickfix.MessageRejectError) {
var f field.CreditRatingField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCreditRating gets UnderlyingCreditRating, Tag 256.
func (m OrderMassStatusRequest) GetUnderlyingCreditRating() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCreditRatingField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityIDSource gets UnderlyingSecurityIDSource, Tag 305.
func (m OrderMassStatusRequest) GetUnderlyingSecurityIDSource() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingIssuer gets UnderlyingIssuer, Tag 306.
func (m OrderMassStatusRequest) GetUnderlyingIssuer() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityDesc gets UnderlyingSecurityDesc, Tag 307.
func (m OrderMassStatusRequest) GetUnderlyingSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityExchange gets UnderlyingSecurityExchange, Tag 308.
func (m OrderMassStatusRequest) GetUnderlyingSecurityExchange() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityExchangeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityID gets UnderlyingSecurityID, Tag 309.
func (m OrderMassStatusRequest) GetUnderlyingSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityType gets UnderlyingSecurityType, Tag 310.
func (m OrderMassStatusRequest) GetUnderlyingSecurityType() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSymbol gets UnderlyingSymbol, Tag 311.
func (m OrderMassStatusRequest) GetUnderlyingSymbol() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSymbolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSymbolSfx gets UnderlyingSymbolSfx, Tag 312.
func (m OrderMassStatusRequest) GetUnderlyingSymbolSfx() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingMaturityMonthYear gets UnderlyingMaturityMonthYear, Tag 313.
func (m OrderMassStatusRequest) GetUnderlyingMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingMaturityMonthYearField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStrikePrice gets UnderlyingStrikePrice, Tag 316.
func (m OrderMassStatusRequest) GetUnderlyingStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingStrikePriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingOptAttribute gets UnderlyingOptAttribute, Tag 317.
func (m OrderMassStatusRequest) GetUnderlyingOptAttribute() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingOptAttributeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCurrency gets UnderlyingCurrency, Tag 318.
func (m OrderMassStatusRequest) GetUnderlyingCurrency() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradingSessionID gets TradingSessionID, Tag 336.
func (m OrderMassStatusRequest) GetTradingSessionID() (v enum.TradingSessionID, err quickfix.MessageRejectError) {
var f field.TradingSessionIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedIssuerLen gets EncodedIssuerLen, Tag 348.
func (m OrderMassStatusRequest) GetEncodedIssuerLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedIssuerLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedIssuer gets EncodedIssuer, Tag 349.
func (m OrderMassStatusRequest) GetEncodedIssuer() (v string, err quickfix.MessageRejectError) {
var f field.EncodedIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedSecurityDescLen gets EncodedSecurityDescLen, Tag 350.
func (m OrderMassStatusRequest) GetEncodedSecurityDescLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedSecurityDescLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedSecurityDesc gets EncodedSecurityDesc, Tag 351.
func (m OrderMassStatusRequest) GetEncodedSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.EncodedSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingIssuerLen gets EncodedUnderlyingIssuerLen, Tag 362.
func (m OrderMassStatusRequest) GetEncodedUnderlyingIssuerLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingIssuerLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingIssuer gets EncodedUnderlyingIssuer, Tag 363.
func (m OrderMassStatusRequest) GetEncodedUnderlyingIssuer() (v string, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingSecurityDescLen gets EncodedUnderlyingSecurityDescLen, Tag 364.
func (m OrderMassStatusRequest) GetEncodedUnderlyingSecurityDescLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingSecurityDescLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingSecurityDesc gets EncodedUnderlyingSecurityDesc, Tag 365.