forked from quickfixgo/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Advertisement.generated.go
5575 lines (4682 loc) · 179 KB
/
Advertisement.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 advertisement
import (
"github.com/shopspring/decimal"
"time"
"github.com/quickfixgo/quickfix"
"github.com/quickfixgo/quickfix/enum"
"github.com/quickfixgo/quickfix/field"
"github.com/quickfixgo/quickfix/fixt11"
"github.com/quickfixgo/quickfix/tag"
)
//Advertisement is the fix50sp2 Advertisement type, MsgType = 7
type Advertisement struct {
fixt11.Header
*quickfix.Body
fixt11.Trailer
Message *quickfix.Message
}
//FromMessage creates a Advertisement from a quickfix.Message instance
func FromMessage(m *quickfix.Message) Advertisement {
return Advertisement{
Header: fixt11.Header{&m.Header},
Body: &m.Body,
Trailer: fixt11.Trailer{&m.Trailer},
Message: m,
}
}
//ToMessage returns a quickfix.Message instance
func (m Advertisement) ToMessage() *quickfix.Message {
return m.Message
}
//New returns a Advertisement initialized with the required fields for Advertisement
func New(advid field.AdvIdField, advtranstype field.AdvTransTypeField, advside field.AdvSideField, quantity field.QuantityField) (m Advertisement) {
m.Message = quickfix.NewMessage()
m.Header = fixt11.NewHeader(&m.Message.Header)
m.Body = &m.Message.Body
m.Trailer.Trailer = &m.Message.Trailer
m.Header.Set(field.NewMsgType("7"))
m.Set(advid)
m.Set(advtranstype)
m.Set(advside)
m.Set(quantity)
return
}
//A RouteOut is the callback type that should be implemented for routing Message
type RouteOut func(msg Advertisement, 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 "9", "7", r
}
//SetAdvId sets AdvId, Tag 2
func (m Advertisement) SetAdvId(v string) {
m.Set(field.NewAdvId(v))
}
//SetAdvRefID sets AdvRefID, Tag 3
func (m Advertisement) SetAdvRefID(v string) {
m.Set(field.NewAdvRefID(v))
}
//SetAdvSide sets AdvSide, Tag 4
func (m Advertisement) SetAdvSide(v enum.AdvSide) {
m.Set(field.NewAdvSide(v))
}
//SetAdvTransType sets AdvTransType, Tag 5
func (m Advertisement) SetAdvTransType(v enum.AdvTransType) {
m.Set(field.NewAdvTransType(v))
}
//SetCurrency sets Currency, Tag 15
func (m Advertisement) SetCurrency(v string) {
m.Set(field.NewCurrency(v))
}
//SetSecurityIDSource sets SecurityIDSource, Tag 22
func (m Advertisement) SetSecurityIDSource(v enum.SecurityIDSource) {
m.Set(field.NewSecurityIDSource(v))
}
//SetLastMkt sets LastMkt, Tag 30
func (m Advertisement) SetLastMkt(v string) {
m.Set(field.NewLastMkt(v))
}
//SetPrice sets Price, Tag 44
func (m Advertisement) SetPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewPrice(value, scale))
}
//SetSecurityID sets SecurityID, Tag 48
func (m Advertisement) SetSecurityID(v string) {
m.Set(field.NewSecurityID(v))
}
//SetQuantity sets Quantity, Tag 53
func (m Advertisement) SetQuantity(value decimal.Decimal, scale int32) {
m.Set(field.NewQuantity(value, scale))
}
//SetSymbol sets Symbol, Tag 55
func (m Advertisement) SetSymbol(v string) {
m.Set(field.NewSymbol(v))
}
//SetText sets Text, Tag 58
func (m Advertisement) SetText(v string) {
m.Set(field.NewText(v))
}
//SetTransactTime sets TransactTime, Tag 60
func (m Advertisement) SetTransactTime(v time.Time) {
m.Set(field.NewTransactTime(v))
}
//SetSymbolSfx sets SymbolSfx, Tag 65
func (m Advertisement) SetSymbolSfx(v enum.SymbolSfx) {
m.Set(field.NewSymbolSfx(v))
}
//SetTradeDate sets TradeDate, Tag 75
func (m Advertisement) SetTradeDate(v string) {
m.Set(field.NewTradeDate(v))
}
//SetIssuer sets Issuer, Tag 106
func (m Advertisement) SetIssuer(v string) {
m.Set(field.NewIssuer(v))
}
//SetSecurityDesc sets SecurityDesc, Tag 107
func (m Advertisement) SetSecurityDesc(v string) {
m.Set(field.NewSecurityDesc(v))
}
//SetURLLink sets URLLink, Tag 149
func (m Advertisement) SetURLLink(v string) {
m.Set(field.NewURLLink(v))
}
//SetSecurityType sets SecurityType, Tag 167
func (m Advertisement) SetSecurityType(v enum.SecurityType) {
m.Set(field.NewSecurityType(v))
}
//SetMaturityMonthYear sets MaturityMonthYear, Tag 200
func (m Advertisement) SetMaturityMonthYear(v string) {
m.Set(field.NewMaturityMonthYear(v))
}
//SetPutOrCall sets PutOrCall, Tag 201
func (m Advertisement) SetPutOrCall(v enum.PutOrCall) {
m.Set(field.NewPutOrCall(v))
}
//SetStrikePrice sets StrikePrice, Tag 202
func (m Advertisement) SetStrikePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewStrikePrice(value, scale))
}
//SetOptAttribute sets OptAttribute, Tag 206
func (m Advertisement) SetOptAttribute(v string) {
m.Set(field.NewOptAttribute(v))
}
//SetSecurityExchange sets SecurityExchange, Tag 207
func (m Advertisement) SetSecurityExchange(v string) {
m.Set(field.NewSecurityExchange(v))
}
//SetCouponRate sets CouponRate, Tag 223
func (m Advertisement) SetCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewCouponRate(value, scale))
}
//SetCouponPaymentDate sets CouponPaymentDate, Tag 224
func (m Advertisement) SetCouponPaymentDate(v string) {
m.Set(field.NewCouponPaymentDate(v))
}
//SetIssueDate sets IssueDate, Tag 225
func (m Advertisement) SetIssueDate(v string) {
m.Set(field.NewIssueDate(v))
}
//SetRepurchaseTerm sets RepurchaseTerm, Tag 226
func (m Advertisement) SetRepurchaseTerm(v int) {
m.Set(field.NewRepurchaseTerm(v))
}
//SetRepurchaseRate sets RepurchaseRate, Tag 227
func (m Advertisement) SetRepurchaseRate(value decimal.Decimal, scale int32) {
m.Set(field.NewRepurchaseRate(value, scale))
}
//SetFactor sets Factor, Tag 228
func (m Advertisement) SetFactor(value decimal.Decimal, scale int32) {
m.Set(field.NewFactor(value, scale))
}
//SetContractMultiplier sets ContractMultiplier, Tag 231
func (m Advertisement) SetContractMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewContractMultiplier(value, scale))
}
//SetRepoCollateralSecurityType sets RepoCollateralSecurityType, Tag 239
func (m Advertisement) SetRepoCollateralSecurityType(v int) {
m.Set(field.NewRepoCollateralSecurityType(v))
}
//SetRedemptionDate sets RedemptionDate, Tag 240
func (m Advertisement) SetRedemptionDate(v string) {
m.Set(field.NewRedemptionDate(v))
}
//SetCreditRating sets CreditRating, Tag 255
func (m Advertisement) SetCreditRating(v string) {
m.Set(field.NewCreditRating(v))
}
//SetTradingSessionID sets TradingSessionID, Tag 336
func (m Advertisement) SetTradingSessionID(v enum.TradingSessionID) {
m.Set(field.NewTradingSessionID(v))
}
//SetEncodedIssuerLen sets EncodedIssuerLen, Tag 348
func (m Advertisement) SetEncodedIssuerLen(v int) {
m.Set(field.NewEncodedIssuerLen(v))
}
//SetEncodedIssuer sets EncodedIssuer, Tag 349
func (m Advertisement) SetEncodedIssuer(v string) {
m.Set(field.NewEncodedIssuer(v))
}
//SetEncodedSecurityDescLen sets EncodedSecurityDescLen, Tag 350
func (m Advertisement) SetEncodedSecurityDescLen(v int) {
m.Set(field.NewEncodedSecurityDescLen(v))
}
//SetEncodedSecurityDesc sets EncodedSecurityDesc, Tag 351
func (m Advertisement) SetEncodedSecurityDesc(v string) {
m.Set(field.NewEncodedSecurityDesc(v))
}
//SetEncodedTextLen sets EncodedTextLen, Tag 354
func (m Advertisement) SetEncodedTextLen(v int) {
m.Set(field.NewEncodedTextLen(v))
}
//SetEncodedText sets EncodedText, Tag 355
func (m Advertisement) SetEncodedText(v string) {
m.Set(field.NewEncodedText(v))
}
//SetNoSecurityAltID sets NoSecurityAltID, Tag 454
func (m Advertisement) SetNoSecurityAltID(f NoSecurityAltIDRepeatingGroup) {
m.SetGroup(f)
}
//SetProduct sets Product, Tag 460
func (m Advertisement) SetProduct(v enum.Product) {
m.Set(field.NewProduct(v))
}
//SetCFICode sets CFICode, Tag 461
func (m Advertisement) SetCFICode(v string) {
m.Set(field.NewCFICode(v))
}
//SetCountryOfIssue sets CountryOfIssue, Tag 470
func (m Advertisement) SetCountryOfIssue(v string) {
m.Set(field.NewCountryOfIssue(v))
}
//SetStateOrProvinceOfIssue sets StateOrProvinceOfIssue, Tag 471
func (m Advertisement) SetStateOrProvinceOfIssue(v string) {
m.Set(field.NewStateOrProvinceOfIssue(v))
}
//SetLocaleOfIssue sets LocaleOfIssue, Tag 472
func (m Advertisement) SetLocaleOfIssue(v string) {
m.Set(field.NewLocaleOfIssue(v))
}
//SetMaturityDate sets MaturityDate, Tag 541
func (m Advertisement) SetMaturityDate(v string) {
m.Set(field.NewMaturityDate(v))
}
//SetInstrRegistry sets InstrRegistry, Tag 543
func (m Advertisement) SetInstrRegistry(v enum.InstrRegistry) {
m.Set(field.NewInstrRegistry(v))
}
//SetNoLegs sets NoLegs, Tag 555
func (m Advertisement) SetNoLegs(f NoLegsRepeatingGroup) {
m.SetGroup(f)
}
//SetTradingSessionSubID sets TradingSessionSubID, Tag 625
func (m Advertisement) SetTradingSessionSubID(v enum.TradingSessionSubID) {
m.Set(field.NewTradingSessionSubID(v))
}
//SetContractSettlMonth sets ContractSettlMonth, Tag 667
func (m Advertisement) SetContractSettlMonth(v string) {
m.Set(field.NewContractSettlMonth(v))
}
//SetPool sets Pool, Tag 691
func (m Advertisement) SetPool(v string) {
m.Set(field.NewPool(v))
}
//SetNoUnderlyings sets NoUnderlyings, Tag 711
func (m Advertisement) SetNoUnderlyings(f NoUnderlyingsRepeatingGroup) {
m.SetGroup(f)
}
//SetSecuritySubType sets SecuritySubType, Tag 762
func (m Advertisement) SetSecuritySubType(v string) {
m.Set(field.NewSecuritySubType(v))
}
//SetQtyType sets QtyType, Tag 854
func (m Advertisement) SetQtyType(v enum.QtyType) {
m.Set(field.NewQtyType(v))
}
//SetNoEvents sets NoEvents, Tag 864
func (m Advertisement) SetNoEvents(f NoEventsRepeatingGroup) {
m.SetGroup(f)
}
//SetDatedDate sets DatedDate, Tag 873
func (m Advertisement) SetDatedDate(v string) {
m.Set(field.NewDatedDate(v))
}
//SetInterestAccrualDate sets InterestAccrualDate, Tag 874
func (m Advertisement) SetInterestAccrualDate(v string) {
m.Set(field.NewInterestAccrualDate(v))
}
//SetCPProgram sets CPProgram, Tag 875
func (m Advertisement) SetCPProgram(v enum.CPProgram) {
m.Set(field.NewCPProgram(v))
}
//SetCPRegType sets CPRegType, Tag 876
func (m Advertisement) SetCPRegType(v string) {
m.Set(field.NewCPRegType(v))
}
//SetStrikeCurrency sets StrikeCurrency, Tag 947
func (m Advertisement) SetStrikeCurrency(v string) {
m.Set(field.NewStrikeCurrency(v))
}
//SetSecurityStatus sets SecurityStatus, Tag 965
func (m Advertisement) SetSecurityStatus(v enum.SecurityStatus) {
m.Set(field.NewSecurityStatus(v))
}
//SetSettleOnOpenFlag sets SettleOnOpenFlag, Tag 966
func (m Advertisement) SetSettleOnOpenFlag(v string) {
m.Set(field.NewSettleOnOpenFlag(v))
}
//SetStrikeMultiplier sets StrikeMultiplier, Tag 967
func (m Advertisement) SetStrikeMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewStrikeMultiplier(value, scale))
}
//SetStrikeValue sets StrikeValue, Tag 968
func (m Advertisement) SetStrikeValue(value decimal.Decimal, scale int32) {
m.Set(field.NewStrikeValue(value, scale))
}
//SetMinPriceIncrement sets MinPriceIncrement, Tag 969
func (m Advertisement) SetMinPriceIncrement(value decimal.Decimal, scale int32) {
m.Set(field.NewMinPriceIncrement(value, scale))
}
//SetPositionLimit sets PositionLimit, Tag 970
func (m Advertisement) SetPositionLimit(v int) {
m.Set(field.NewPositionLimit(v))
}
//SetNTPositionLimit sets NTPositionLimit, Tag 971
func (m Advertisement) SetNTPositionLimit(v int) {
m.Set(field.NewNTPositionLimit(v))
}
//SetUnitOfMeasure sets UnitOfMeasure, Tag 996
func (m Advertisement) SetUnitOfMeasure(v enum.UnitOfMeasure) {
m.Set(field.NewUnitOfMeasure(v))
}
//SetTimeUnit sets TimeUnit, Tag 997
func (m Advertisement) SetTimeUnit(v enum.TimeUnit) {
m.Set(field.NewTimeUnit(v))
}
//SetNoInstrumentParties sets NoInstrumentParties, Tag 1018
func (m Advertisement) SetNoInstrumentParties(f NoInstrumentPartiesRepeatingGroup) {
m.SetGroup(f)
}
//SetInstrmtAssignmentMethod sets InstrmtAssignmentMethod, Tag 1049
func (m Advertisement) SetInstrmtAssignmentMethod(v string) {
m.Set(field.NewInstrmtAssignmentMethod(v))
}
//SetMaturityTime sets MaturityTime, Tag 1079
func (m Advertisement) SetMaturityTime(v string) {
m.Set(field.NewMaturityTime(v))
}
//SetMinPriceIncrementAmount sets MinPriceIncrementAmount, Tag 1146
func (m Advertisement) SetMinPriceIncrementAmount(value decimal.Decimal, scale int32) {
m.Set(field.NewMinPriceIncrementAmount(value, scale))
}
//SetUnitOfMeasureQty sets UnitOfMeasureQty, Tag 1147
func (m Advertisement) SetUnitOfMeasureQty(value decimal.Decimal, scale int32) {
m.Set(field.NewUnitOfMeasureQty(value, scale))
}
//SetSecurityGroup sets SecurityGroup, Tag 1151
func (m Advertisement) SetSecurityGroup(v string) {
m.Set(field.NewSecurityGroup(v))
}
//SetSecurityXMLLen sets SecurityXMLLen, Tag 1184
func (m Advertisement) SetSecurityXMLLen(v int) {
m.Set(field.NewSecurityXMLLen(v))
}
//SetSecurityXML sets SecurityXML, Tag 1185
func (m Advertisement) SetSecurityXML(v string) {
m.Set(field.NewSecurityXML(v))
}
//SetSecurityXMLSchema sets SecurityXMLSchema, Tag 1186
func (m Advertisement) SetSecurityXMLSchema(v string) {
m.Set(field.NewSecurityXMLSchema(v))
}
//SetPriceUnitOfMeasure sets PriceUnitOfMeasure, Tag 1191
func (m Advertisement) SetPriceUnitOfMeasure(v string) {
m.Set(field.NewPriceUnitOfMeasure(v))
}
//SetPriceUnitOfMeasureQty sets PriceUnitOfMeasureQty, Tag 1192
func (m Advertisement) SetPriceUnitOfMeasureQty(value decimal.Decimal, scale int32) {
m.Set(field.NewPriceUnitOfMeasureQty(value, scale))
}
//SetSettlMethod sets SettlMethod, Tag 1193
func (m Advertisement) SetSettlMethod(v enum.SettlMethod) {
m.Set(field.NewSettlMethod(v))
}
//SetExerciseStyle sets ExerciseStyle, Tag 1194
func (m Advertisement) SetExerciseStyle(v enum.ExerciseStyle) {
m.Set(field.NewExerciseStyle(v))
}
//SetOptPayoutAmount sets OptPayoutAmount, Tag 1195
func (m Advertisement) SetOptPayoutAmount(value decimal.Decimal, scale int32) {
m.Set(field.NewOptPayoutAmount(value, scale))
}
//SetPriceQuoteMethod sets PriceQuoteMethod, Tag 1196
func (m Advertisement) SetPriceQuoteMethod(v enum.PriceQuoteMethod) {
m.Set(field.NewPriceQuoteMethod(v))
}
//SetValuationMethod sets ValuationMethod, Tag 1197
func (m Advertisement) SetValuationMethod(v enum.ValuationMethod) {
m.Set(field.NewValuationMethod(v))
}
//SetListMethod sets ListMethod, Tag 1198
func (m Advertisement) SetListMethod(v enum.ListMethod) {
m.Set(field.NewListMethod(v))
}
//SetCapPrice sets CapPrice, Tag 1199
func (m Advertisement) SetCapPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewCapPrice(value, scale))
}
//SetFloorPrice sets FloorPrice, Tag 1200
func (m Advertisement) SetFloorPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewFloorPrice(value, scale))
}
//SetProductComplex sets ProductComplex, Tag 1227
func (m Advertisement) SetProductComplex(v string) {
m.Set(field.NewProductComplex(v))
}
//SetFlexProductEligibilityIndicator sets FlexProductEligibilityIndicator, Tag 1242
func (m Advertisement) SetFlexProductEligibilityIndicator(v bool) {
m.Set(field.NewFlexProductEligibilityIndicator(v))
}
//SetFlexibleIndicator sets FlexibleIndicator, Tag 1244
func (m Advertisement) SetFlexibleIndicator(v bool) {
m.Set(field.NewFlexibleIndicator(v))
}
//SetContractMultiplierUnit sets ContractMultiplierUnit, Tag 1435
func (m Advertisement) SetContractMultiplierUnit(v enum.ContractMultiplierUnit) {
m.Set(field.NewContractMultiplierUnit(v))
}
//SetFlowScheduleType sets FlowScheduleType, Tag 1439
func (m Advertisement) SetFlowScheduleType(v enum.FlowScheduleType) {
m.Set(field.NewFlowScheduleType(v))
}
//SetRestructuringType sets RestructuringType, Tag 1449
func (m Advertisement) SetRestructuringType(v enum.RestructuringType) {
m.Set(field.NewRestructuringType(v))
}
//SetSeniority sets Seniority, Tag 1450
func (m Advertisement) SetSeniority(v enum.Seniority) {
m.Set(field.NewSeniority(v))
}
//SetNotionalPercentageOutstanding sets NotionalPercentageOutstanding, Tag 1451
func (m Advertisement) SetNotionalPercentageOutstanding(value decimal.Decimal, scale int32) {
m.Set(field.NewNotionalPercentageOutstanding(value, scale))
}
//SetOriginalNotionalPercentageOutstanding sets OriginalNotionalPercentageOutstanding, Tag 1452
func (m Advertisement) SetOriginalNotionalPercentageOutstanding(value decimal.Decimal, scale int32) {
m.Set(field.NewOriginalNotionalPercentageOutstanding(value, scale))
}
//SetAttachmentPoint sets AttachmentPoint, Tag 1457
func (m Advertisement) SetAttachmentPoint(value decimal.Decimal, scale int32) {
m.Set(field.NewAttachmentPoint(value, scale))
}
//SetDetachmentPoint sets DetachmentPoint, Tag 1458
func (m Advertisement) SetDetachmentPoint(value decimal.Decimal, scale int32) {
m.Set(field.NewDetachmentPoint(value, scale))
}
//SetStrikePriceDeterminationMethod sets StrikePriceDeterminationMethod, Tag 1478
func (m Advertisement) SetStrikePriceDeterminationMethod(v enum.StrikePriceDeterminationMethod) {
m.Set(field.NewStrikePriceDeterminationMethod(v))
}
//SetStrikePriceBoundaryMethod sets StrikePriceBoundaryMethod, Tag 1479
func (m Advertisement) SetStrikePriceBoundaryMethod(v enum.StrikePriceBoundaryMethod) {
m.Set(field.NewStrikePriceBoundaryMethod(v))
}
//SetStrikePriceBoundaryPrecision sets StrikePriceBoundaryPrecision, Tag 1480
func (m Advertisement) SetStrikePriceBoundaryPrecision(value decimal.Decimal, scale int32) {
m.Set(field.NewStrikePriceBoundaryPrecision(value, scale))
}
//SetUnderlyingPriceDeterminationMethod sets UnderlyingPriceDeterminationMethod, Tag 1481
func (m Advertisement) SetUnderlyingPriceDeterminationMethod(v enum.UnderlyingPriceDeterminationMethod) {
m.Set(field.NewUnderlyingPriceDeterminationMethod(v))
}
//SetOptPayoutType sets OptPayoutType, Tag 1482
func (m Advertisement) SetOptPayoutType(v enum.OptPayoutType) {
m.Set(field.NewOptPayoutType(v))
}
//SetNoComplexEvents sets NoComplexEvents, Tag 1483
func (m Advertisement) SetNoComplexEvents(f NoComplexEventsRepeatingGroup) {
m.SetGroup(f)
}
//GetAdvId gets AdvId, Tag 2
func (m Advertisement) GetAdvId() (v string, err quickfix.MessageRejectError) {
var f field.AdvIdField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetAdvRefID gets AdvRefID, Tag 3
func (m Advertisement) GetAdvRefID() (v string, err quickfix.MessageRejectError) {
var f field.AdvRefIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetAdvSide gets AdvSide, Tag 4
func (m Advertisement) GetAdvSide() (v enum.AdvSide, err quickfix.MessageRejectError) {
var f field.AdvSideField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetAdvTransType gets AdvTransType, Tag 5
func (m Advertisement) GetAdvTransType() (v enum.AdvTransType, err quickfix.MessageRejectError) {
var f field.AdvTransTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetCurrency gets Currency, Tag 15
func (m Advertisement) GetCurrency() (v string, err quickfix.MessageRejectError) {
var f field.CurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSecurityIDSource gets SecurityIDSource, Tag 22
func (m Advertisement) GetSecurityIDSource() (v enum.SecurityIDSource, err quickfix.MessageRejectError) {
var f field.SecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetLastMkt gets LastMkt, Tag 30
func (m Advertisement) GetLastMkt() (v string, err quickfix.MessageRejectError) {
var f field.LastMktField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetPrice gets Price, Tag 44
func (m Advertisement) GetPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.PriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSecurityID gets SecurityID, Tag 48
func (m Advertisement) GetSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.SecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetQuantity gets Quantity, Tag 53
func (m Advertisement) GetQuantity() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.QuantityField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSymbol gets Symbol, Tag 55
func (m Advertisement) GetSymbol() (v string, err quickfix.MessageRejectError) {
var f field.SymbolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetText gets Text, Tag 58
func (m Advertisement) GetText() (v string, err quickfix.MessageRejectError) {
var f field.TextField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetTransactTime gets TransactTime, Tag 60
func (m Advertisement) GetTransactTime() (v time.Time, err quickfix.MessageRejectError) {
var f field.TransactTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSymbolSfx gets SymbolSfx, Tag 65
func (m Advertisement) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError) {
var f field.SymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetTradeDate gets TradeDate, Tag 75
func (m Advertisement) GetTradeDate() (v string, err quickfix.MessageRejectError) {
var f field.TradeDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetIssuer gets Issuer, Tag 106
func (m Advertisement) 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 Advertisement) GetSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.SecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetURLLink gets URLLink, Tag 149
func (m Advertisement) GetURLLink() (v string, err quickfix.MessageRejectError) {
var f field.URLLinkField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSecurityType gets SecurityType, Tag 167
func (m Advertisement) 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 Advertisement) GetMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
var f field.MaturityMonthYearField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetPutOrCall gets PutOrCall, Tag 201
func (m Advertisement) GetPutOrCall() (v enum.PutOrCall, err quickfix.MessageRejectError) {
var f field.PutOrCallField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetStrikePrice gets StrikePrice, Tag 202
func (m Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) GetRedemptionDate() (v string, err quickfix.MessageRejectError) {
var f field.RedemptionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetCreditRating gets CreditRating, Tag 255
func (m Advertisement) GetCreditRating() (v string, err quickfix.MessageRejectError) {
var f field.CreditRatingField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetTradingSessionID gets TradingSessionID, Tag 336
func (m Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) 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 Advertisement) GetEncodedSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.EncodedSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetEncodedTextLen gets EncodedTextLen, Tag 354
func (m Advertisement) GetEncodedTextLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedTextLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetEncodedText gets EncodedText, Tag 355
func (m Advertisement) GetEncodedText() (v string, err quickfix.MessageRejectError) {
var f field.EncodedTextField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetNoSecurityAltID gets NoSecurityAltID, Tag 454
func (m Advertisement) GetNoSecurityAltID() (NoSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoSecurityAltIDRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
//GetProduct gets Product, Tag 460
func (m Advertisement) GetProduct() (v enum.Product, err quickfix.MessageRejectError) {
var f field.ProductField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetCFICode gets CFICode, Tag 461
func (m Advertisement) GetCFICode() (v string, err quickfix.MessageRejectError) {
var f field.CFICodeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetCountryOfIssue gets CountryOfIssue, Tag 470
func (m Advertisement) GetCountryOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.CountryOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}