-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCollateralReport.generated.go
5850 lines (4907 loc) · 181 KB
/
CollateralReport.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 collateralreport
import (
"github.com/shopspring/decimal"
"time"
"github.com/quickfixgo/enum"
"github.com/quickfixgo/field"
"github.com/quickfixgo/fixt11"
"github.com/quickfixgo/quickfix"
"github.com/quickfixgo/tag"
)
//CollateralReport is the fix50 CollateralReport type, MsgType = BA
type CollateralReport struct {
fixt11.Header
*quickfix.Body
fixt11.Trailer
Message *quickfix.Message
}
//FromMessage creates a CollateralReport from a quickfix.Message instance
func FromMessage(m *quickfix.Message) CollateralReport {
return CollateralReport{
Header: fixt11.Header{&m.Header},
Body: &m.Body,
Trailer: fixt11.Trailer{&m.Trailer},
Message: m,
}
}
//ToMessage returns a quickfix.Message instance
func (m CollateralReport) ToMessage() *quickfix.Message {
return m.Message
}
//New returns a CollateralReport initialized with the required fields for CollateralReport
func New(collrptid field.CollRptIDField, collstatus field.CollStatusField) (m CollateralReport) {
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("BA"))
m.Set(collrptid)
m.Set(collstatus)
return
}
//A RouteOut is the callback type that should be implemented for routing Message
type RouteOut func(msg CollateralReport, 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 "7", "BA", r
}
//SetAccount sets Account, Tag 1
func (m CollateralReport) SetAccount(v string) {
m.Set(field.NewAccount(v))
}
//SetClOrdID sets ClOrdID, Tag 11
func (m CollateralReport) SetClOrdID(v string) {
m.Set(field.NewClOrdID(v))
}
//SetCurrency sets Currency, Tag 15
func (m CollateralReport) SetCurrency(v string) {
m.Set(field.NewCurrency(v))
}
//SetSecurityIDSource sets SecurityIDSource, Tag 22
func (m CollateralReport) SetSecurityIDSource(v enum.SecurityIDSource) {
m.Set(field.NewSecurityIDSource(v))
}
//SetOrderID sets OrderID, Tag 37
func (m CollateralReport) SetOrderID(v string) {
m.Set(field.NewOrderID(v))
}
//SetPrice sets Price, Tag 44
func (m CollateralReport) SetPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewPrice(value, scale))
}
//SetSecurityID sets SecurityID, Tag 48
func (m CollateralReport) SetSecurityID(v string) {
m.Set(field.NewSecurityID(v))
}
//SetQuantity sets Quantity, Tag 53
func (m CollateralReport) SetQuantity(value decimal.Decimal, scale int32) {
m.Set(field.NewQuantity(value, scale))
}
//SetSide sets Side, Tag 54
func (m CollateralReport) SetSide(v enum.Side) {
m.Set(field.NewSide(v))
}
//SetSymbol sets Symbol, Tag 55
func (m CollateralReport) SetSymbol(v string) {
m.Set(field.NewSymbol(v))
}
//SetText sets Text, Tag 58
func (m CollateralReport) SetText(v string) {
m.Set(field.NewText(v))
}
//SetTransactTime sets TransactTime, Tag 60
func (m CollateralReport) SetTransactTime(v time.Time) {
m.Set(field.NewTransactTime(v))
}
//SetSettlDate sets SettlDate, Tag 64
func (m CollateralReport) SetSettlDate(v string) {
m.Set(field.NewSettlDate(v))
}
//SetSymbolSfx sets SymbolSfx, Tag 65
func (m CollateralReport) SetSymbolSfx(v enum.SymbolSfx) {
m.Set(field.NewSymbolSfx(v))
}
//SetNoDlvyInst sets NoDlvyInst, Tag 85
func (m CollateralReport) SetNoDlvyInst(f NoDlvyInstRepeatingGroup) {
m.SetGroup(f)
}
//SetIssuer sets Issuer, Tag 106
func (m CollateralReport) SetIssuer(v string) {
m.Set(field.NewIssuer(v))
}
//SetSecurityDesc sets SecurityDesc, Tag 107
func (m CollateralReport) SetSecurityDesc(v string) {
m.Set(field.NewSecurityDesc(v))
}
//SetNoExecs sets NoExecs, Tag 124
func (m CollateralReport) SetNoExecs(f NoExecsRepeatingGroup) {
m.SetGroup(f)
}
//SetNoMiscFees sets NoMiscFees, Tag 136
func (m CollateralReport) SetNoMiscFees(f NoMiscFeesRepeatingGroup) {
m.SetGroup(f)
}
//SetAccruedInterestAmt sets AccruedInterestAmt, Tag 159
func (m CollateralReport) SetAccruedInterestAmt(value decimal.Decimal, scale int32) {
m.Set(field.NewAccruedInterestAmt(value, scale))
}
//SetSecurityType sets SecurityType, Tag 167
func (m CollateralReport) SetSecurityType(v enum.SecurityType) {
m.Set(field.NewSecurityType(v))
}
//SetStandInstDbType sets StandInstDbType, Tag 169
func (m CollateralReport) SetStandInstDbType(v enum.StandInstDbType) {
m.Set(field.NewStandInstDbType(v))
}
//SetStandInstDbName sets StandInstDbName, Tag 170
func (m CollateralReport) SetStandInstDbName(v string) {
m.Set(field.NewStandInstDbName(v))
}
//SetStandInstDbID sets StandInstDbID, Tag 171
func (m CollateralReport) SetStandInstDbID(v string) {
m.Set(field.NewStandInstDbID(v))
}
//SetSettlDeliveryType sets SettlDeliveryType, Tag 172
func (m CollateralReport) SetSettlDeliveryType(v enum.SettlDeliveryType) {
m.Set(field.NewSettlDeliveryType(v))
}
//SetSecondaryOrderID sets SecondaryOrderID, Tag 198
func (m CollateralReport) SetSecondaryOrderID(v string) {
m.Set(field.NewSecondaryOrderID(v))
}
//SetMaturityMonthYear sets MaturityMonthYear, Tag 200
func (m CollateralReport) SetMaturityMonthYear(v string) {
m.Set(field.NewMaturityMonthYear(v))
}
//SetStrikePrice sets StrikePrice, Tag 202
func (m CollateralReport) SetStrikePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewStrikePrice(value, scale))
}
//SetOptAttribute sets OptAttribute, Tag 206
func (m CollateralReport) SetOptAttribute(v string) {
m.Set(field.NewOptAttribute(v))
}
//SetSecurityExchange sets SecurityExchange, Tag 207
func (m CollateralReport) SetSecurityExchange(v string) {
m.Set(field.NewSecurityExchange(v))
}
//SetSpread sets Spread, Tag 218
func (m CollateralReport) SetSpread(value decimal.Decimal, scale int32) {
m.Set(field.NewSpread(value, scale))
}
//SetBenchmarkCurveCurrency sets BenchmarkCurveCurrency, Tag 220
func (m CollateralReport) SetBenchmarkCurveCurrency(v string) {
m.Set(field.NewBenchmarkCurveCurrency(v))
}
//SetBenchmarkCurveName sets BenchmarkCurveName, Tag 221
func (m CollateralReport) SetBenchmarkCurveName(v enum.BenchmarkCurveName) {
m.Set(field.NewBenchmarkCurveName(v))
}
//SetBenchmarkCurvePoint sets BenchmarkCurvePoint, Tag 222
func (m CollateralReport) SetBenchmarkCurvePoint(v string) {
m.Set(field.NewBenchmarkCurvePoint(v))
}
//SetCouponRate sets CouponRate, Tag 223
func (m CollateralReport) SetCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewCouponRate(value, scale))
}
//SetCouponPaymentDate sets CouponPaymentDate, Tag 224
func (m CollateralReport) SetCouponPaymentDate(v string) {
m.Set(field.NewCouponPaymentDate(v))
}
//SetIssueDate sets IssueDate, Tag 225
func (m CollateralReport) SetIssueDate(v string) {
m.Set(field.NewIssueDate(v))
}
//SetRepurchaseTerm sets RepurchaseTerm, Tag 226
func (m CollateralReport) SetRepurchaseTerm(v int) {
m.Set(field.NewRepurchaseTerm(v))
}
//SetRepurchaseRate sets RepurchaseRate, Tag 227
func (m CollateralReport) SetRepurchaseRate(value decimal.Decimal, scale int32) {
m.Set(field.NewRepurchaseRate(value, scale))
}
//SetFactor sets Factor, Tag 228
func (m CollateralReport) SetFactor(value decimal.Decimal, scale int32) {
m.Set(field.NewFactor(value, scale))
}
//SetContractMultiplier sets ContractMultiplier, Tag 231
func (m CollateralReport) SetContractMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewContractMultiplier(value, scale))
}
//SetNoStipulations sets NoStipulations, Tag 232
func (m CollateralReport) SetNoStipulations(f NoStipulationsRepeatingGroup) {
m.SetGroup(f)
}
//SetRepoCollateralSecurityType sets RepoCollateralSecurityType, Tag 239
func (m CollateralReport) SetRepoCollateralSecurityType(v int) {
m.Set(field.NewRepoCollateralSecurityType(v))
}
//SetRedemptionDate sets RedemptionDate, Tag 240
func (m CollateralReport) SetRedemptionDate(v string) {
m.Set(field.NewRedemptionDate(v))
}
//SetCreditRating sets CreditRating, Tag 255
func (m CollateralReport) SetCreditRating(v string) {
m.Set(field.NewCreditRating(v))
}
//SetFinancialStatus sets FinancialStatus, Tag 291
func (m CollateralReport) SetFinancialStatus(v enum.FinancialStatus) {
m.Set(field.NewFinancialStatus(v))
}
//SetTradingSessionID sets TradingSessionID, Tag 336
func (m CollateralReport) SetTradingSessionID(v enum.TradingSessionID) {
m.Set(field.NewTradingSessionID(v))
}
//SetEncodedIssuerLen sets EncodedIssuerLen, Tag 348
func (m CollateralReport) SetEncodedIssuerLen(v int) {
m.Set(field.NewEncodedIssuerLen(v))
}
//SetEncodedIssuer sets EncodedIssuer, Tag 349
func (m CollateralReport) SetEncodedIssuer(v string) {
m.Set(field.NewEncodedIssuer(v))
}
//SetEncodedSecurityDescLen sets EncodedSecurityDescLen, Tag 350
func (m CollateralReport) SetEncodedSecurityDescLen(v int) {
m.Set(field.NewEncodedSecurityDescLen(v))
}
//SetEncodedSecurityDesc sets EncodedSecurityDesc, Tag 351
func (m CollateralReport) SetEncodedSecurityDesc(v string) {
m.Set(field.NewEncodedSecurityDesc(v))
}
//SetEncodedTextLen sets EncodedTextLen, Tag 354
func (m CollateralReport) SetEncodedTextLen(v int) {
m.Set(field.NewEncodedTextLen(v))
}
//SetEncodedText sets EncodedText, Tag 355
func (m CollateralReport) SetEncodedText(v string) {
m.Set(field.NewEncodedText(v))
}
//SetPriceType sets PriceType, Tag 423
func (m CollateralReport) SetPriceType(v enum.PriceType) {
m.Set(field.NewPriceType(v))
}
//SetNoPartyIDs sets NoPartyIDs, Tag 453
func (m CollateralReport) SetNoPartyIDs(f NoPartyIDsRepeatingGroup) {
m.SetGroup(f)
}
//SetNoSecurityAltID sets NoSecurityAltID, Tag 454
func (m CollateralReport) SetNoSecurityAltID(f NoSecurityAltIDRepeatingGroup) {
m.SetGroup(f)
}
//SetProduct sets Product, Tag 460
func (m CollateralReport) SetProduct(v enum.Product) {
m.Set(field.NewProduct(v))
}
//SetCFICode sets CFICode, Tag 461
func (m CollateralReport) SetCFICode(v string) {
m.Set(field.NewCFICode(v))
}
//SetCountryOfIssue sets CountryOfIssue, Tag 470
func (m CollateralReport) SetCountryOfIssue(v string) {
m.Set(field.NewCountryOfIssue(v))
}
//SetStateOrProvinceOfIssue sets StateOrProvinceOfIssue, Tag 471
func (m CollateralReport) SetStateOrProvinceOfIssue(v string) {
m.Set(field.NewStateOrProvinceOfIssue(v))
}
//SetLocaleOfIssue sets LocaleOfIssue, Tag 472
func (m CollateralReport) SetLocaleOfIssue(v string) {
m.Set(field.NewLocaleOfIssue(v))
}
//SetSecondaryClOrdID sets SecondaryClOrdID, Tag 526
func (m CollateralReport) SetSecondaryClOrdID(v string) {
m.Set(field.NewSecondaryClOrdID(v))
}
//SetMaturityDate sets MaturityDate, Tag 541
func (m CollateralReport) SetMaturityDate(v string) {
m.Set(field.NewMaturityDate(v))
}
//SetInstrRegistry sets InstrRegistry, Tag 543
func (m CollateralReport) SetInstrRegistry(v enum.InstrRegistry) {
m.Set(field.NewInstrRegistry(v))
}
//SetNoLegs sets NoLegs, Tag 555
func (m CollateralReport) SetNoLegs(f NoLegsRepeatingGroup) {
m.SetGroup(f)
}
//SetAccountType sets AccountType, Tag 581
func (m CollateralReport) SetAccountType(v enum.AccountType) {
m.Set(field.NewAccountType(v))
}
//SetTradingSessionSubID sets TradingSessionSubID, Tag 625
func (m CollateralReport) SetTradingSessionSubID(v enum.TradingSessionSubID) {
m.Set(field.NewTradingSessionSubID(v))
}
//SetBenchmarkPrice sets BenchmarkPrice, Tag 662
func (m CollateralReport) SetBenchmarkPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewBenchmarkPrice(value, scale))
}
//SetBenchmarkPriceType sets BenchmarkPriceType, Tag 663
func (m CollateralReport) SetBenchmarkPriceType(v int) {
m.Set(field.NewBenchmarkPriceType(v))
}
//SetContractSettlMonth sets ContractSettlMonth, Tag 667
func (m CollateralReport) SetContractSettlMonth(v string) {
m.Set(field.NewContractSettlMonth(v))
}
//SetPool sets Pool, Tag 691
func (m CollateralReport) SetPool(v string) {
m.Set(field.NewPool(v))
}
//SetBenchmarkSecurityID sets BenchmarkSecurityID, Tag 699
func (m CollateralReport) SetBenchmarkSecurityID(v string) {
m.Set(field.NewBenchmarkSecurityID(v))
}
//SetNoUnderlyings sets NoUnderlyings, Tag 711
func (m CollateralReport) SetNoUnderlyings(f NoUnderlyingsRepeatingGroup) {
m.SetGroup(f)
}
//SetClearingBusinessDate sets ClearingBusinessDate, Tag 715
func (m CollateralReport) SetClearingBusinessDate(v string) {
m.Set(field.NewClearingBusinessDate(v))
}
//SetSettlSessID sets SettlSessID, Tag 716
func (m CollateralReport) SetSettlSessID(v enum.SettlSessID) {
m.Set(field.NewSettlSessID(v))
}
//SetSettlSessSubID sets SettlSessSubID, Tag 717
func (m CollateralReport) SetSettlSessSubID(v string) {
m.Set(field.NewSettlSessSubID(v))
}
//SetBenchmarkSecurityIDSource sets BenchmarkSecurityIDSource, Tag 761
func (m CollateralReport) SetBenchmarkSecurityIDSource(v string) {
m.Set(field.NewBenchmarkSecurityIDSource(v))
}
//SetSecuritySubType sets SecuritySubType, Tag 762
func (m CollateralReport) SetSecuritySubType(v string) {
m.Set(field.NewSecuritySubType(v))
}
//SetNoTrdRegTimestamps sets NoTrdRegTimestamps, Tag 768
func (m CollateralReport) SetNoTrdRegTimestamps(f NoTrdRegTimestampsRepeatingGroup) {
m.SetGroup(f)
}
//SetTerminationType sets TerminationType, Tag 788
func (m CollateralReport) SetTerminationType(v enum.TerminationType) {
m.Set(field.NewTerminationType(v))
}
//SetQtyType sets QtyType, Tag 854
func (m CollateralReport) SetQtyType(v enum.QtyType) {
m.Set(field.NewQtyType(v))
}
//SetNoEvents sets NoEvents, Tag 864
func (m CollateralReport) SetNoEvents(f NoEventsRepeatingGroup) {
m.SetGroup(f)
}
//SetDatedDate sets DatedDate, Tag 873
func (m CollateralReport) SetDatedDate(v string) {
m.Set(field.NewDatedDate(v))
}
//SetInterestAccrualDate sets InterestAccrualDate, Tag 874
func (m CollateralReport) SetInterestAccrualDate(v string) {
m.Set(field.NewInterestAccrualDate(v))
}
//SetCPProgram sets CPProgram, Tag 875
func (m CollateralReport) SetCPProgram(v enum.CPProgram) {
m.Set(field.NewCPProgram(v))
}
//SetCPRegType sets CPRegType, Tag 876
func (m CollateralReport) SetCPRegType(v string) {
m.Set(field.NewCPRegType(v))
}
//SetNoTrades sets NoTrades, Tag 897
func (m CollateralReport) SetNoTrades(f NoTradesRepeatingGroup) {
m.SetGroup(f)
}
//SetMarginRatio sets MarginRatio, Tag 898
func (m CollateralReport) SetMarginRatio(value decimal.Decimal, scale int32) {
m.Set(field.NewMarginRatio(value, scale))
}
//SetMarginExcess sets MarginExcess, Tag 899
func (m CollateralReport) SetMarginExcess(value decimal.Decimal, scale int32) {
m.Set(field.NewMarginExcess(value, scale))
}
//SetTotalNetValue sets TotalNetValue, Tag 900
func (m CollateralReport) SetTotalNetValue(value decimal.Decimal, scale int32) {
m.Set(field.NewTotalNetValue(value, scale))
}
//SetCashOutstanding sets CashOutstanding, Tag 901
func (m CollateralReport) SetCashOutstanding(value decimal.Decimal, scale int32) {
m.Set(field.NewCashOutstanding(value, scale))
}
//SetCollRptID sets CollRptID, Tag 908
func (m CollateralReport) SetCollRptID(v string) {
m.Set(field.NewCollRptID(v))
}
//SetCollInquiryID sets CollInquiryID, Tag 909
func (m CollateralReport) SetCollInquiryID(v string) {
m.Set(field.NewCollInquiryID(v))
}
//SetCollStatus sets CollStatus, Tag 910
func (m CollateralReport) SetCollStatus(v enum.CollStatus) {
m.Set(field.NewCollStatus(v))
}
//SetTotNumReports sets TotNumReports, Tag 911
func (m CollateralReport) SetTotNumReports(v int) {
m.Set(field.NewTotNumReports(v))
}
//SetLastRptRequested sets LastRptRequested, Tag 912
func (m CollateralReport) SetLastRptRequested(v bool) {
m.Set(field.NewLastRptRequested(v))
}
//SetAgreementDesc sets AgreementDesc, Tag 913
func (m CollateralReport) SetAgreementDesc(v string) {
m.Set(field.NewAgreementDesc(v))
}
//SetAgreementID sets AgreementID, Tag 914
func (m CollateralReport) SetAgreementID(v string) {
m.Set(field.NewAgreementID(v))
}
//SetAgreementDate sets AgreementDate, Tag 915
func (m CollateralReport) SetAgreementDate(v string) {
m.Set(field.NewAgreementDate(v))
}
//SetStartDate sets StartDate, Tag 916
func (m CollateralReport) SetStartDate(v string) {
m.Set(field.NewStartDate(v))
}
//SetEndDate sets EndDate, Tag 917
func (m CollateralReport) SetEndDate(v string) {
m.Set(field.NewEndDate(v))
}
//SetAgreementCurrency sets AgreementCurrency, Tag 918
func (m CollateralReport) SetAgreementCurrency(v string) {
m.Set(field.NewAgreementCurrency(v))
}
//SetDeliveryType sets DeliveryType, Tag 919
func (m CollateralReport) SetDeliveryType(v enum.DeliveryType) {
m.Set(field.NewDeliveryType(v))
}
//SetEndAccruedInterestAmt sets EndAccruedInterestAmt, Tag 920
func (m CollateralReport) SetEndAccruedInterestAmt(value decimal.Decimal, scale int32) {
m.Set(field.NewEndAccruedInterestAmt(value, scale))
}
//SetStartCash sets StartCash, Tag 921
func (m CollateralReport) SetStartCash(value decimal.Decimal, scale int32) {
m.Set(field.NewStartCash(value, scale))
}
//SetEndCash sets EndCash, Tag 922
func (m CollateralReport) SetEndCash(value decimal.Decimal, scale int32) {
m.Set(field.NewEndCash(value, scale))
}
//SetStrikeCurrency sets StrikeCurrency, Tag 947
func (m CollateralReport) SetStrikeCurrency(v string) {
m.Set(field.NewStrikeCurrency(v))
}
//SetSecurityStatus sets SecurityStatus, Tag 965
func (m CollateralReport) SetSecurityStatus(v enum.SecurityStatus) {
m.Set(field.NewSecurityStatus(v))
}
//SetSettleOnOpenFlag sets SettleOnOpenFlag, Tag 966
func (m CollateralReport) SetSettleOnOpenFlag(v string) {
m.Set(field.NewSettleOnOpenFlag(v))
}
//SetStrikeMultiplier sets StrikeMultiplier, Tag 967
func (m CollateralReport) SetStrikeMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewStrikeMultiplier(value, scale))
}
//SetStrikeValue sets StrikeValue, Tag 968
func (m CollateralReport) SetStrikeValue(value decimal.Decimal, scale int32) {
m.Set(field.NewStrikeValue(value, scale))
}
//SetMinPriceIncrement sets MinPriceIncrement, Tag 969
func (m CollateralReport) SetMinPriceIncrement(value decimal.Decimal, scale int32) {
m.Set(field.NewMinPriceIncrement(value, scale))
}
//SetPositionLimit sets PositionLimit, Tag 970
func (m CollateralReport) SetPositionLimit(v int) {
m.Set(field.NewPositionLimit(v))
}
//SetNTPositionLimit sets NTPositionLimit, Tag 971
func (m CollateralReport) SetNTPositionLimit(v int) {
m.Set(field.NewNTPositionLimit(v))
}
//SetUnitOfMeasure sets UnitOfMeasure, Tag 996
func (m CollateralReport) SetUnitOfMeasure(v enum.UnitOfMeasure) {
m.Set(field.NewUnitOfMeasure(v))
}
//SetTimeUnit sets TimeUnit, Tag 997
func (m CollateralReport) SetTimeUnit(v enum.TimeUnit) {
m.Set(field.NewTimeUnit(v))
}
//SetNoInstrumentParties sets NoInstrumentParties, Tag 1018
func (m CollateralReport) SetNoInstrumentParties(f NoInstrumentPartiesRepeatingGroup) {
m.SetGroup(f)
}
//SetCollApplType sets CollApplType, Tag 1043
func (m CollateralReport) SetCollApplType(v enum.CollApplType) {
m.Set(field.NewCollApplType(v))
}
//SetInstrmtAssignmentMethod sets InstrmtAssignmentMethod, Tag 1049
func (m CollateralReport) SetInstrmtAssignmentMethod(v string) {
m.Set(field.NewInstrmtAssignmentMethod(v))
}
//SetMaturityTime sets MaturityTime, Tag 1079
func (m CollateralReport) SetMaturityTime(v string) {
m.Set(field.NewMaturityTime(v))
}
//GetAccount gets Account, Tag 1
func (m CollateralReport) GetAccount() (v string, err quickfix.MessageRejectError) {
var f field.AccountField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetClOrdID gets ClOrdID, Tag 11
func (m CollateralReport) GetClOrdID() (v string, err quickfix.MessageRejectError) {
var f field.ClOrdIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetCurrency gets Currency, Tag 15
func (m CollateralReport) 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 CollateralReport) GetSecurityIDSource() (v enum.SecurityIDSource, err quickfix.MessageRejectError) {
var f field.SecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetOrderID gets OrderID, Tag 37
func (m CollateralReport) GetOrderID() (v string, err quickfix.MessageRejectError) {
var f field.OrderIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetPrice gets Price, Tag 44
func (m CollateralReport) 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 CollateralReport) 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 CollateralReport) GetQuantity() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.QuantityField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSide gets Side, Tag 54
func (m CollateralReport) 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 CollateralReport) 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 CollateralReport) 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 CollateralReport) GetTransactTime() (v time.Time, err quickfix.MessageRejectError) {
var f field.TransactTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSettlDate gets SettlDate, Tag 64
func (m CollateralReport) GetSettlDate() (v string, err quickfix.MessageRejectError) {
var f field.SettlDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSymbolSfx gets SymbolSfx, Tag 65
func (m CollateralReport) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError) {
var f field.SymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetNoDlvyInst gets NoDlvyInst, Tag 85
func (m CollateralReport) GetNoDlvyInst() (NoDlvyInstRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoDlvyInstRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
//GetIssuer gets Issuer, Tag 106
func (m CollateralReport) 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 CollateralReport) GetSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.SecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetNoExecs gets NoExecs, Tag 124
func (m CollateralReport) GetNoExecs() (NoExecsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoExecsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
//GetNoMiscFees gets NoMiscFees, Tag 136
func (m CollateralReport) GetNoMiscFees() (NoMiscFeesRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoMiscFeesRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
//GetAccruedInterestAmt gets AccruedInterestAmt, Tag 159
func (m CollateralReport) GetAccruedInterestAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.AccruedInterestAmtField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSecurityType gets SecurityType, Tag 167
func (m CollateralReport) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError) {
var f field.SecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetStandInstDbType gets StandInstDbType, Tag 169
func (m CollateralReport) GetStandInstDbType() (v enum.StandInstDbType, err quickfix.MessageRejectError) {
var f field.StandInstDbTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetStandInstDbName gets StandInstDbName, Tag 170
func (m CollateralReport) GetStandInstDbName() (v string, err quickfix.MessageRejectError) {
var f field.StandInstDbNameField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetStandInstDbID gets StandInstDbID, Tag 171
func (m CollateralReport) GetStandInstDbID() (v string, err quickfix.MessageRejectError) {
var f field.StandInstDbIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSettlDeliveryType gets SettlDeliveryType, Tag 172
func (m CollateralReport) GetSettlDeliveryType() (v enum.SettlDeliveryType, err quickfix.MessageRejectError) {
var f field.SettlDeliveryTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSecondaryOrderID gets SecondaryOrderID, Tag 198
func (m CollateralReport) GetSecondaryOrderID() (v string, err quickfix.MessageRejectError) {
var f field.SecondaryOrderIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetMaturityMonthYear gets MaturityMonthYear, Tag 200
func (m CollateralReport) 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 CollateralReport) 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 CollateralReport) 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 CollateralReport) GetSecurityExchange() (v string, err quickfix.MessageRejectError) {
var f field.SecurityExchangeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetSpread gets Spread, Tag 218
func (m CollateralReport) GetSpread() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.SpreadField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetBenchmarkCurveCurrency gets BenchmarkCurveCurrency, Tag 220
func (m CollateralReport) GetBenchmarkCurveCurrency() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkCurveCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetBenchmarkCurveName gets BenchmarkCurveName, Tag 221
func (m CollateralReport) GetBenchmarkCurveName() (v enum.BenchmarkCurveName, err quickfix.MessageRejectError) {
var f field.BenchmarkCurveNameField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetBenchmarkCurvePoint gets BenchmarkCurvePoint, Tag 222
func (m CollateralReport) GetBenchmarkCurvePoint() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkCurvePointField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
//GetCouponRate gets CouponRate, Tag 223
func (m CollateralReport) 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 CollateralReport) 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 CollateralReport) 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 CollateralReport) 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 CollateralReport) GetRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.RepurchaseRateField