fixer-fix 0.10.1

Generated FIX protocol types for fixer
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
// Code generated by fixer-gen. DO NOT EDIT.
#![allow(clippy::new_without_default)]
#![allow(clippy::needless_pass_by_value)]
#![allow(clippy::too_many_arguments)]
#![allow(unused_imports)]

use fixer::message::Message;
use fixer::fix_string::FIXString;
use fixer::errors::MessageRejectErrorEnum;
use fixer::session::session_id::SessionID;

use rust_decimal::Decimal;


use jiff::Timestamp;

use crate::field;
use crate::tag;

/// `OrderCancelReplaceRequest` is the `fix43` `OrderCancelReplaceRequest` type, `MsgType` = G.
pub struct OrderCancelReplaceRequest {
    pub message: Message,
}

impl OrderCancelReplaceRequest {
    /// Creates a new `OrderCancelReplaceRequest` with required fields.
    pub fn new(orig_cl_ord_id: field::OrigClOrdIDField, cl_ord_id: field::ClOrdIDField, handl_inst: field::HandlInstField, side: field::SideField, transact_time: field::TransactTimeField, ord_type: field::OrdTypeField) -> Self {
        let mut msg = Message::new();
        msg.header.set_field(tag::MSG_TYPE, FIXString::from("G".to_string()));

        msg.body.set_field(tag::ORIG_CL_ORD_ID, orig_cl_ord_id.0);

        msg.body.set_field(tag::CL_ORD_ID, cl_ord_id.0);

        msg.body.set_field(tag::HANDL_INST, handl_inst.0);

        msg.body.set_field(tag::SIDE, side.0);

        msg.body.set_field(tag::TRANSACT_TIME, transact_time.0);

        msg.body.set_field(tag::ORD_TYPE, ord_type.0);

        Self { message: msg }
    }

    /// Creates a `OrderCancelReplaceRequest` from an existing `Message`.
    pub fn from_message(msg: Message) -> Self {
        Self { message: msg }
    }

    /// Returns the underlying `Message`.
    pub fn to_message(self) -> Message {
        self.message
    }




    /// Sets `Account`, Tag 1.
    pub fn set_account(&mut self, v: String) {
        self.message.body.set_field(tag::ACCOUNT, FIXString::from(v));
    }

    /// Gets `Account`, Tag 1.
    pub fn get_account(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::AccountField::new(String::new());
        self.message.body.get_field(tag::ACCOUNT, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `Account` is present, Tag 1.
    pub fn has_account(&self) -> bool {
        self.message.body.has(tag::ACCOUNT)
    }




    /// Sets `AccountType`, Tag 581.
    pub fn set_account_type(&mut self, v: isize) {
        self.message.body.set_field(tag::ACCOUNT_TYPE, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `AccountType`, Tag 581.
    pub fn get_account_type(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::AccountTypeField::new(0);
        self.message.body.get_field(tag::ACCOUNT_TYPE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `AccountType` is present, Tag 581.
    pub fn has_account_type(&self) -> bool {
        self.message.body.has(tag::ACCOUNT_TYPE)
    }




    /// Sets `AccruedInterestAmt`, Tag 159.
    pub fn set_accrued_interest_amt(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::ACCRUED_INTEREST_AMT, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `AccruedInterestAmt`, Tag 159.
    pub fn get_accrued_interest_amt(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::AccruedInterestAmtField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::ACCRUED_INTEREST_AMT, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `AccruedInterestAmt` is present, Tag 159.
    pub fn has_accrued_interest_amt(&self) -> bool {
        self.message.body.has(tag::ACCRUED_INTEREST_AMT)
    }




    /// Sets `AccruedInterestRate`, Tag 158.
    pub fn set_accrued_interest_rate(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::ACCRUED_INTEREST_RATE, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `AccruedInterestRate`, Tag 158.
    pub fn get_accrued_interest_rate(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::AccruedInterestRateField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::ACCRUED_INTEREST_RATE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `AccruedInterestRate` is present, Tag 158.
    pub fn has_accrued_interest_rate(&self) -> bool {
        self.message.body.has(tag::ACCRUED_INTEREST_RATE)
    }




    /// Sets `BenchmarkCurveCurrency`, Tag 220.
    pub fn set_benchmark_curve_currency(&mut self, v: String) {
        self.message.body.set_field(tag::BENCHMARK_CURVE_CURRENCY, FIXString::from(v));
    }

    /// Gets `BenchmarkCurveCurrency`, Tag 220.
    pub fn get_benchmark_curve_currency(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::BenchmarkCurveCurrencyField::new(String::new());
        self.message.body.get_field(tag::BENCHMARK_CURVE_CURRENCY, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `BenchmarkCurveCurrency` is present, Tag 220.
    pub fn has_benchmark_curve_currency(&self) -> bool {
        self.message.body.has(tag::BENCHMARK_CURVE_CURRENCY)
    }




    /// Sets `BenchmarkCurveName`, Tag 221.
    pub fn set_benchmark_curve_name(&mut self, v: String) {
        self.message.body.set_field(tag::BENCHMARK_CURVE_NAME, FIXString::from(v));
    }

    /// Gets `BenchmarkCurveName`, Tag 221.
    pub fn get_benchmark_curve_name(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::BenchmarkCurveNameField::new(String::new());
        self.message.body.get_field(tag::BENCHMARK_CURVE_NAME, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `BenchmarkCurveName` is present, Tag 221.
    pub fn has_benchmark_curve_name(&self) -> bool {
        self.message.body.has(tag::BENCHMARK_CURVE_NAME)
    }




    /// Sets `BenchmarkCurvePoint`, Tag 222.
    pub fn set_benchmark_curve_point(&mut self, v: String) {
        self.message.body.set_field(tag::BENCHMARK_CURVE_POINT, FIXString::from(v));
    }

    /// Gets `BenchmarkCurvePoint`, Tag 222.
    pub fn get_benchmark_curve_point(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::BenchmarkCurvePointField::new(String::new());
        self.message.body.get_field(tag::BENCHMARK_CURVE_POINT, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `BenchmarkCurvePoint` is present, Tag 222.
    pub fn has_benchmark_curve_point(&self) -> bool {
        self.message.body.has(tag::BENCHMARK_CURVE_POINT)
    }




    /// Sets `BookingUnit`, Tag 590.
    pub fn set_booking_unit(&mut self, v: String) {
        self.message.body.set_field(tag::BOOKING_UNIT, FIXString::from(v));
    }

    /// Gets `BookingUnit`, Tag 590.
    pub fn get_booking_unit(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::BookingUnitField::new(String::new());
        self.message.body.get_field(tag::BOOKING_UNIT, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `BookingUnit` is present, Tag 590.
    pub fn has_booking_unit(&self) -> bool {
        self.message.body.has(tag::BOOKING_UNIT)
    }




    /// Sets `CFICode`, Tag 461.
    pub fn set_cfi_code(&mut self, v: String) {
        self.message.body.set_field(tag::CFI_CODE, FIXString::from(v));
    }

    /// Gets `CFICode`, Tag 461.
    pub fn get_cfi_code(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::CFICodeField::new(String::new());
        self.message.body.get_field(tag::CFI_CODE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `CFICode` is present, Tag 461.
    pub fn has_cfi_code(&self) -> bool {
        self.message.body.has(tag::CFI_CODE)
    }




    /// Sets `CancellationRights`, Tag 480.
    pub fn set_cancellation_rights(&mut self, v: String) {
        self.message.body.set_field(tag::CANCELLATION_RIGHTS, FIXString::from(v));
    }

    /// Gets `CancellationRights`, Tag 480.
    pub fn get_cancellation_rights(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::CancellationRightsField::new(String::new());
        self.message.body.get_field(tag::CANCELLATION_RIGHTS, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `CancellationRights` is present, Tag 480.
    pub fn has_cancellation_rights(&self) -> bool {
        self.message.body.has(tag::CANCELLATION_RIGHTS)
    }




    /// Sets `CashMargin`, Tag 544.
    pub fn set_cash_margin(&mut self, v: String) {
        self.message.body.set_field(tag::CASH_MARGIN, FIXString::from(v));
    }

    /// Gets `CashMargin`, Tag 544.
    pub fn get_cash_margin(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::CashMarginField::new(String::new());
        self.message.body.get_field(tag::CASH_MARGIN, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `CashMargin` is present, Tag 544.
    pub fn has_cash_margin(&self) -> bool {
        self.message.body.has(tag::CASH_MARGIN)
    }




    /// Sets `CashOrderQty`, Tag 152.
    pub fn set_cash_order_qty(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::CASH_ORDER_QTY, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `CashOrderQty`, Tag 152.
    pub fn get_cash_order_qty(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::CashOrderQtyField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::CASH_ORDER_QTY, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `CashOrderQty` is present, Tag 152.
    pub fn has_cash_order_qty(&self) -> bool {
        self.message.body.has(tag::CASH_ORDER_QTY)
    }




    /// Sets `ClOrdID`, Tag 11.
    pub fn set_cl_ord_id(&mut self, v: String) {
        self.message.body.set_field(tag::CL_ORD_ID, FIXString::from(v));
    }

    /// Gets `ClOrdID`, Tag 11.
    pub fn get_cl_ord_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ClOrdIDField::new(String::new());
        self.message.body.get_field(tag::CL_ORD_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ClOrdID` is present, Tag 11.
    pub fn has_cl_ord_id(&self) -> bool {
        self.message.body.has(tag::CL_ORD_ID)
    }




    /// Sets `ClOrdLinkID`, Tag 583.
    pub fn set_cl_ord_link_id(&mut self, v: String) {
        self.message.body.set_field(tag::CL_ORD_LINK_ID, FIXString::from(v));
    }

    /// Gets `ClOrdLinkID`, Tag 583.
    pub fn get_cl_ord_link_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ClOrdLinkIDField::new(String::new());
        self.message.body.get_field(tag::CL_ORD_LINK_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ClOrdLinkID` is present, Tag 583.
    pub fn has_cl_ord_link_id(&self) -> bool {
        self.message.body.has(tag::CL_ORD_LINK_ID)
    }




    /// Sets `ClearingFeeIndicator`, Tag 635.
    pub fn set_clearing_fee_indicator(&mut self, v: String) {
        self.message.body.set_field(tag::CLEARING_FEE_INDICATOR, FIXString::from(v));
    }

    /// Gets `ClearingFeeIndicator`, Tag 635.
    pub fn get_clearing_fee_indicator(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ClearingFeeIndicatorField::new(String::new());
        self.message.body.get_field(tag::CLEARING_FEE_INDICATOR, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ClearingFeeIndicator` is present, Tag 635.
    pub fn has_clearing_fee_indicator(&self) -> bool {
        self.message.body.has(tag::CLEARING_FEE_INDICATOR)
    }




    /// Sets `CommCurrency`, Tag 479.
    pub fn set_comm_currency(&mut self, v: String) {
        self.message.body.set_field(tag::COMM_CURRENCY, FIXString::from(v));
    }

    /// Gets `CommCurrency`, Tag 479.
    pub fn get_comm_currency(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::CommCurrencyField::new(String::new());
        self.message.body.get_field(tag::COMM_CURRENCY, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `CommCurrency` is present, Tag 479.
    pub fn has_comm_currency(&self) -> bool {
        self.message.body.has(tag::COMM_CURRENCY)
    }




    /// Sets `CommType`, Tag 13.
    pub fn set_comm_type(&mut self, v: String) {
        self.message.body.set_field(tag::COMM_TYPE, FIXString::from(v));
    }

    /// Gets `CommType`, Tag 13.
    pub fn get_comm_type(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::CommTypeField::new(String::new());
        self.message.body.get_field(tag::COMM_TYPE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `CommType` is present, Tag 13.
    pub fn has_comm_type(&self) -> bool {
        self.message.body.has(tag::COMM_TYPE)
    }




    /// Sets `Commission`, Tag 12.
    pub fn set_commission(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::COMMISSION, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `Commission`, Tag 12.
    pub fn get_commission(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::CommissionField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::COMMISSION, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `Commission` is present, Tag 12.
    pub fn has_commission(&self) -> bool {
        self.message.body.has(tag::COMMISSION)
    }




    /// Sets `ComplianceID`, Tag 376.
    pub fn set_compliance_id(&mut self, v: String) {
        self.message.body.set_field(tag::COMPLIANCE_ID, FIXString::from(v));
    }

    /// Gets `ComplianceID`, Tag 376.
    pub fn get_compliance_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ComplianceIDField::new(String::new());
        self.message.body.get_field(tag::COMPLIANCE_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ComplianceID` is present, Tag 376.
    pub fn has_compliance_id(&self) -> bool {
        self.message.body.has(tag::COMPLIANCE_ID)
    }




    /// Sets `ContractMultiplier`, Tag 231.
    pub fn set_contract_multiplier(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::CONTRACT_MULTIPLIER, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `ContractMultiplier`, Tag 231.
    pub fn get_contract_multiplier(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::ContractMultiplierField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::CONTRACT_MULTIPLIER, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `ContractMultiplier` is present, Tag 231.
    pub fn has_contract_multiplier(&self) -> bool {
        self.message.body.has(tag::CONTRACT_MULTIPLIER)
    }




    /// Sets `CountryOfIssue`, Tag 470.
    pub fn set_country_of_issue(&mut self, v: String) {
        self.message.body.set_field(tag::COUNTRY_OF_ISSUE, FIXString::from(v));
    }

    /// Gets `CountryOfIssue`, Tag 470.
    pub fn get_country_of_issue(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::CountryOfIssueField::new(String::new());
        self.message.body.get_field(tag::COUNTRY_OF_ISSUE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `CountryOfIssue` is present, Tag 470.
    pub fn has_country_of_issue(&self) -> bool {
        self.message.body.has(tag::COUNTRY_OF_ISSUE)
    }




    /// Sets `CouponPaymentDate`, Tag 224.
    pub fn set_coupon_payment_date(&mut self, v: String) {
        self.message.body.set_field(tag::COUPON_PAYMENT_DATE, FIXString::from(v));
    }

    /// Gets `CouponPaymentDate`, Tag 224.
    pub fn get_coupon_payment_date(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::CouponPaymentDateField::new(String::new());
        self.message.body.get_field(tag::COUPON_PAYMENT_DATE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `CouponPaymentDate` is present, Tag 224.
    pub fn has_coupon_payment_date(&self) -> bool {
        self.message.body.has(tag::COUPON_PAYMENT_DATE)
    }




    /// Sets `CouponRate`, Tag 223.
    pub fn set_coupon_rate(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::COUPON_RATE, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `CouponRate`, Tag 223.
    pub fn get_coupon_rate(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::CouponRateField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::COUPON_RATE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `CouponRate` is present, Tag 223.
    pub fn has_coupon_rate(&self) -> bool {
        self.message.body.has(tag::COUPON_RATE)
    }




    /// Sets `CoveredOrUncovered`, Tag 203.
    pub fn set_covered_or_uncovered(&mut self, v: isize) {
        self.message.body.set_field(tag::COVERED_OR_UNCOVERED, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `CoveredOrUncovered`, Tag 203.
    pub fn get_covered_or_uncovered(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::CoveredOrUncoveredField::new(0);
        self.message.body.get_field(tag::COVERED_OR_UNCOVERED, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `CoveredOrUncovered` is present, Tag 203.
    pub fn has_covered_or_uncovered(&self) -> bool {
        self.message.body.has(tag::COVERED_OR_UNCOVERED)
    }




    /// Sets `CreditRating`, Tag 255.
    pub fn set_credit_rating(&mut self, v: String) {
        self.message.body.set_field(tag::CREDIT_RATING, FIXString::from(v));
    }

    /// Gets `CreditRating`, Tag 255.
    pub fn get_credit_rating(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::CreditRatingField::new(String::new());
        self.message.body.get_field(tag::CREDIT_RATING, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `CreditRating` is present, Tag 255.
    pub fn has_credit_rating(&self) -> bool {
        self.message.body.has(tag::CREDIT_RATING)
    }




    /// Sets `Currency`, Tag 15.
    pub fn set_currency(&mut self, v: String) {
        self.message.body.set_field(tag::CURRENCY, FIXString::from(v));
    }

    /// Gets `Currency`, Tag 15.
    pub fn get_currency(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::CurrencyField::new(String::new());
        self.message.body.get_field(tag::CURRENCY, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `Currency` is present, Tag 15.
    pub fn has_currency(&self) -> bool {
        self.message.body.has(tag::CURRENCY)
    }




    /// Sets `CustOrderCapacity`, Tag 582.
    pub fn set_cust_order_capacity(&mut self, v: isize) {
        self.message.body.set_field(tag::CUST_ORDER_CAPACITY, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `CustOrderCapacity`, Tag 582.
    pub fn get_cust_order_capacity(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::CustOrderCapacityField::new(0);
        self.message.body.get_field(tag::CUST_ORDER_CAPACITY, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `CustOrderCapacity` is present, Tag 582.
    pub fn has_cust_order_capacity(&self) -> bool {
        self.message.body.has(tag::CUST_ORDER_CAPACITY)
    }




    /// Sets `DayBookingInst`, Tag 589.
    pub fn set_day_booking_inst(&mut self, v: String) {
        self.message.body.set_field(tag::DAY_BOOKING_INST, FIXString::from(v));
    }

    /// Gets `DayBookingInst`, Tag 589.
    pub fn get_day_booking_inst(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::DayBookingInstField::new(String::new());
        self.message.body.get_field(tag::DAY_BOOKING_INST, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `DayBookingInst` is present, Tag 589.
    pub fn has_day_booking_inst(&self) -> bool {
        self.message.body.has(tag::DAY_BOOKING_INST)
    }




    /// Sets `Designation`, Tag 494.
    pub fn set_designation(&mut self, v: String) {
        self.message.body.set_field(tag::DESIGNATION, FIXString::from(v));
    }

    /// Gets `Designation`, Tag 494.
    pub fn get_designation(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::DesignationField::new(String::new());
        self.message.body.get_field(tag::DESIGNATION, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `Designation` is present, Tag 494.
    pub fn has_designation(&self) -> bool {
        self.message.body.has(tag::DESIGNATION)
    }




    /// Sets `DiscretionInst`, Tag 388.
    pub fn set_discretion_inst(&mut self, v: String) {
        self.message.body.set_field(tag::DISCRETION_INST, FIXString::from(v));
    }

    /// Gets `DiscretionInst`, Tag 388.
    pub fn get_discretion_inst(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::DiscretionInstField::new(String::new());
        self.message.body.get_field(tag::DISCRETION_INST, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `DiscretionInst` is present, Tag 388.
    pub fn has_discretion_inst(&self) -> bool {
        self.message.body.has(tag::DISCRETION_INST)
    }




    /// Sets `DiscretionOffset`, Tag 389.
    pub fn set_discretion_offset(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::DISCRETION_OFFSET, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `DiscretionOffset`, Tag 389.
    pub fn get_discretion_offset(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::DiscretionOffsetField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::DISCRETION_OFFSET, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `DiscretionOffset` is present, Tag 389.
    pub fn has_discretion_offset(&self) -> bool {
        self.message.body.has(tag::DISCRETION_OFFSET)
    }




    /// Sets `EffectiveTime`, Tag 168.
    pub fn set_effective_time(&mut self, v: Timestamp) {
        self.message.body.set_field(tag::EFFECTIVE_TIME, fixer::fix_utc_timestamp::FIXUTCTimestamp {
            time: v,
            precision: fixer::fix_utc_timestamp::TimestampPrecision::Millis,
        });
    }

    /// Gets `EffectiveTime`, Tag 168.
    pub fn get_effective_time(&self) -> Result<Timestamp, MessageRejectErrorEnum> {
        let mut fld = field::EffectiveTimeField::new(Timestamp::UNIX_EPOCH);
        self.message.body.get_field(tag::EFFECTIVE_TIME, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `EffectiveTime` is present, Tag 168.
    pub fn has_effective_time(&self) -> bool {
        self.message.body.has(tag::EFFECTIVE_TIME)
    }




    /// Sets `EncodedIssuer`, Tag 349.
    pub fn set_encoded_issuer(&mut self, v: String) {
        self.message.body.set_field(tag::ENCODED_ISSUER, FIXString::from(v));
    }

    /// Gets `EncodedIssuer`, Tag 349.
    pub fn get_encoded_issuer(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::EncodedIssuerField::new(String::new());
        self.message.body.get_field(tag::ENCODED_ISSUER, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `EncodedIssuer` is present, Tag 349.
    pub fn has_encoded_issuer(&self) -> bool {
        self.message.body.has(tag::ENCODED_ISSUER)
    }




    /// Sets `EncodedIssuerLen`, Tag 348.
    pub fn set_encoded_issuer_len(&mut self, v: isize) {
        self.message.body.set_field(tag::ENCODED_ISSUER_LEN, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `EncodedIssuerLen`, Tag 348.
    pub fn get_encoded_issuer_len(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::EncodedIssuerLenField::new(0);
        self.message.body.get_field(tag::ENCODED_ISSUER_LEN, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `EncodedIssuerLen` is present, Tag 348.
    pub fn has_encoded_issuer_len(&self) -> bool {
        self.message.body.has(tag::ENCODED_ISSUER_LEN)
    }




    /// Sets `EncodedSecurityDesc`, Tag 351.
    pub fn set_encoded_security_desc(&mut self, v: String) {
        self.message.body.set_field(tag::ENCODED_SECURITY_DESC, FIXString::from(v));
    }

    /// Gets `EncodedSecurityDesc`, Tag 351.
    pub fn get_encoded_security_desc(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::EncodedSecurityDescField::new(String::new());
        self.message.body.get_field(tag::ENCODED_SECURITY_DESC, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `EncodedSecurityDesc` is present, Tag 351.
    pub fn has_encoded_security_desc(&self) -> bool {
        self.message.body.has(tag::ENCODED_SECURITY_DESC)
    }




    /// Sets `EncodedSecurityDescLen`, Tag 350.
    pub fn set_encoded_security_desc_len(&mut self, v: isize) {
        self.message.body.set_field(tag::ENCODED_SECURITY_DESC_LEN, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `EncodedSecurityDescLen`, Tag 350.
    pub fn get_encoded_security_desc_len(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::EncodedSecurityDescLenField::new(0);
        self.message.body.get_field(tag::ENCODED_SECURITY_DESC_LEN, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `EncodedSecurityDescLen` is present, Tag 350.
    pub fn has_encoded_security_desc_len(&self) -> bool {
        self.message.body.has(tag::ENCODED_SECURITY_DESC_LEN)
    }




    /// Sets `EncodedText`, Tag 355.
    pub fn set_encoded_text(&mut self, v: String) {
        self.message.body.set_field(tag::ENCODED_TEXT, FIXString::from(v));
    }

    /// Gets `EncodedText`, Tag 355.
    pub fn get_encoded_text(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::EncodedTextField::new(String::new());
        self.message.body.get_field(tag::ENCODED_TEXT, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `EncodedText` is present, Tag 355.
    pub fn has_encoded_text(&self) -> bool {
        self.message.body.has(tag::ENCODED_TEXT)
    }




    /// Sets `EncodedTextLen`, Tag 354.
    pub fn set_encoded_text_len(&mut self, v: isize) {
        self.message.body.set_field(tag::ENCODED_TEXT_LEN, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `EncodedTextLen`, Tag 354.
    pub fn get_encoded_text_len(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::EncodedTextLenField::new(0);
        self.message.body.get_field(tag::ENCODED_TEXT_LEN, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `EncodedTextLen` is present, Tag 354.
    pub fn has_encoded_text_len(&self) -> bool {
        self.message.body.has(tag::ENCODED_TEXT_LEN)
    }




    /// Sets `ExDestination`, Tag 100.
    pub fn set_ex_destination(&mut self, v: String) {
        self.message.body.set_field(tag::EX_DESTINATION, FIXString::from(v));
    }

    /// Gets `ExDestination`, Tag 100.
    pub fn get_ex_destination(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ExDestinationField::new(String::new());
        self.message.body.get_field(tag::EX_DESTINATION, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ExDestination` is present, Tag 100.
    pub fn has_ex_destination(&self) -> bool {
        self.message.body.has(tag::EX_DESTINATION)
    }




    /// Sets `ExecInst`, Tag 18.
    pub fn set_exec_inst(&mut self, v: String) {
        self.message.body.set_field(tag::EXEC_INST, FIXString::from(v));
    }

    /// Gets `ExecInst`, Tag 18.
    pub fn get_exec_inst(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ExecInstField::new(String::new());
        self.message.body.get_field(tag::EXEC_INST, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ExecInst` is present, Tag 18.
    pub fn has_exec_inst(&self) -> bool {
        self.message.body.has(tag::EXEC_INST)
    }




    /// Sets `ExpireDate`, Tag 432.
    pub fn set_expire_date(&mut self, v: String) {
        self.message.body.set_field(tag::EXPIRE_DATE, FIXString::from(v));
    }

    /// Gets `ExpireDate`, Tag 432.
    pub fn get_expire_date(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ExpireDateField::new(String::new());
        self.message.body.get_field(tag::EXPIRE_DATE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ExpireDate` is present, Tag 432.
    pub fn has_expire_date(&self) -> bool {
        self.message.body.has(tag::EXPIRE_DATE)
    }




    /// Sets `ExpireTime`, Tag 126.
    pub fn set_expire_time(&mut self, v: Timestamp) {
        self.message.body.set_field(tag::EXPIRE_TIME, fixer::fix_utc_timestamp::FIXUTCTimestamp {
            time: v,
            precision: fixer::fix_utc_timestamp::TimestampPrecision::Millis,
        });
    }

    /// Gets `ExpireTime`, Tag 126.
    pub fn get_expire_time(&self) -> Result<Timestamp, MessageRejectErrorEnum> {
        let mut fld = field::ExpireTimeField::new(Timestamp::UNIX_EPOCH);
        self.message.body.get_field(tag::EXPIRE_TIME, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `ExpireTime` is present, Tag 126.
    pub fn has_expire_time(&self) -> bool {
        self.message.body.has(tag::EXPIRE_TIME)
    }




    /// Sets `Factor`, Tag 228.
    pub fn set_factor(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::FACTOR, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `Factor`, Tag 228.
    pub fn get_factor(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::FactorField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::FACTOR, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `Factor` is present, Tag 228.
    pub fn has_factor(&self) -> bool {
        self.message.body.has(tag::FACTOR)
    }




    /// Sets `ForexReq`, Tag 121.
    pub fn set_forex_req(&mut self, v: bool) {
        self.message.body.set_field(tag::FOREX_REQ, fixer::fix_boolean::FIXBoolean::from(v));
    }

    /// Gets `ForexReq`, Tag 121.
    pub fn get_forex_req(&self) -> Result<bool, MessageRejectErrorEnum> {
        let mut fld = field::ForexReqField::new(false);
        self.message.body.get_field(tag::FOREX_REQ, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `ForexReq` is present, Tag 121.
    pub fn has_forex_req(&self) -> bool {
        self.message.body.has(tag::FOREX_REQ)
    }




    /// Sets `FundRenewWaiv`, Tag 497.
    pub fn set_fund_renew_waiv(&mut self, v: String) {
        self.message.body.set_field(tag::FUND_RENEW_WAIV, FIXString::from(v));
    }

    /// Gets `FundRenewWaiv`, Tag 497.
    pub fn get_fund_renew_waiv(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::FundRenewWaivField::new(String::new());
        self.message.body.get_field(tag::FUND_RENEW_WAIV, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `FundRenewWaiv` is present, Tag 497.
    pub fn has_fund_renew_waiv(&self) -> bool {
        self.message.body.has(tag::FUND_RENEW_WAIV)
    }




    /// Sets `FutSettDate`, Tag 64.
    pub fn set_fut_sett_date(&mut self, v: String) {
        self.message.body.set_field(tag::FUT_SETT_DATE, FIXString::from(v));
    }

    /// Gets `FutSettDate`, Tag 64.
    pub fn get_fut_sett_date(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::FutSettDateField::new(String::new());
        self.message.body.get_field(tag::FUT_SETT_DATE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `FutSettDate` is present, Tag 64.
    pub fn has_fut_sett_date(&self) -> bool {
        self.message.body.has(tag::FUT_SETT_DATE)
    }




    /// Sets `FutSettDate2`, Tag 193.
    pub fn set_fut_sett_date2(&mut self, v: String) {
        self.message.body.set_field(tag::FUT_SETT_DATE2, FIXString::from(v));
    }

    /// Gets `FutSettDate2`, Tag 193.
    pub fn get_fut_sett_date2(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::FutSettDate2Field::new(String::new());
        self.message.body.get_field(tag::FUT_SETT_DATE2, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `FutSettDate2` is present, Tag 193.
    pub fn has_fut_sett_date2(&self) -> bool {
        self.message.body.has(tag::FUT_SETT_DATE2)
    }




    /// Sets `GTBookingInst`, Tag 427.
    pub fn set_gt_booking_inst(&mut self, v: isize) {
        self.message.body.set_field(tag::GT_BOOKING_INST, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `GTBookingInst`, Tag 427.
    pub fn get_gt_booking_inst(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::GTBookingInstField::new(0);
        self.message.body.get_field(tag::GT_BOOKING_INST, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `GTBookingInst` is present, Tag 427.
    pub fn has_gt_booking_inst(&self) -> bool {
        self.message.body.has(tag::GT_BOOKING_INST)
    }




    /// Sets `HandlInst`, Tag 21.
    pub fn set_handl_inst(&mut self, v: String) {
        self.message.body.set_field(tag::HANDL_INST, FIXString::from(v));
    }

    /// Gets `HandlInst`, Tag 21.
    pub fn get_handl_inst(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::HandlInstField::new(String::new());
        self.message.body.get_field(tag::HANDL_INST, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `HandlInst` is present, Tag 21.
    pub fn has_handl_inst(&self) -> bool {
        self.message.body.has(tag::HANDL_INST)
    }




    /// Sets `InstrRegistry`, Tag 543.
    pub fn set_instr_registry(&mut self, v: String) {
        self.message.body.set_field(tag::INSTR_REGISTRY, FIXString::from(v));
    }

    /// Gets `InstrRegistry`, Tag 543.
    pub fn get_instr_registry(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::InstrRegistryField::new(String::new());
        self.message.body.get_field(tag::INSTR_REGISTRY, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `InstrRegistry` is present, Tag 543.
    pub fn has_instr_registry(&self) -> bool {
        self.message.body.has(tag::INSTR_REGISTRY)
    }




    /// Sets `IssueDate`, Tag 225.
    pub fn set_issue_date(&mut self, v: String) {
        self.message.body.set_field(tag::ISSUE_DATE, FIXString::from(v));
    }

    /// Gets `IssueDate`, Tag 225.
    pub fn get_issue_date(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::IssueDateField::new(String::new());
        self.message.body.get_field(tag::ISSUE_DATE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `IssueDate` is present, Tag 225.
    pub fn has_issue_date(&self) -> bool {
        self.message.body.has(tag::ISSUE_DATE)
    }




    /// Sets `Issuer`, Tag 106.
    pub fn set_issuer(&mut self, v: String) {
        self.message.body.set_field(tag::ISSUER, FIXString::from(v));
    }

    /// Gets `Issuer`, Tag 106.
    pub fn get_issuer(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::IssuerField::new(String::new());
        self.message.body.get_field(tag::ISSUER, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `Issuer` is present, Tag 106.
    pub fn has_issuer(&self) -> bool {
        self.message.body.has(tag::ISSUER)
    }




    /// Sets `ListID`, Tag 66.
    pub fn set_list_id(&mut self, v: String) {
        self.message.body.set_field(tag::LIST_ID, FIXString::from(v));
    }

    /// Gets `ListID`, Tag 66.
    pub fn get_list_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ListIDField::new(String::new());
        self.message.body.get_field(tag::LIST_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ListID` is present, Tag 66.
    pub fn has_list_id(&self) -> bool {
        self.message.body.has(tag::LIST_ID)
    }




    /// Sets `LocaleOfIssue`, Tag 472.
    pub fn set_locale_of_issue(&mut self, v: String) {
        self.message.body.set_field(tag::LOCALE_OF_ISSUE, FIXString::from(v));
    }

    /// Gets `LocaleOfIssue`, Tag 472.
    pub fn get_locale_of_issue(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::LocaleOfIssueField::new(String::new());
        self.message.body.get_field(tag::LOCALE_OF_ISSUE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `LocaleOfIssue` is present, Tag 472.
    pub fn has_locale_of_issue(&self) -> bool {
        self.message.body.has(tag::LOCALE_OF_ISSUE)
    }




    /// Sets `LocateReqd`, Tag 114.
    pub fn set_locate_reqd(&mut self, v: bool) {
        self.message.body.set_field(tag::LOCATE_REQD, fixer::fix_boolean::FIXBoolean::from(v));
    }

    /// Gets `LocateReqd`, Tag 114.
    pub fn get_locate_reqd(&self) -> Result<bool, MessageRejectErrorEnum> {
        let mut fld = field::LocateReqdField::new(false);
        self.message.body.get_field(tag::LOCATE_REQD, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `LocateReqd` is present, Tag 114.
    pub fn has_locate_reqd(&self) -> bool {
        self.message.body.has(tag::LOCATE_REQD)
    }




    /// Sets `MaturityDate`, Tag 541.
    pub fn set_maturity_date(&mut self, v: String) {
        self.message.body.set_field(tag::MATURITY_DATE, FIXString::from(v));
    }

    /// Gets `MaturityDate`, Tag 541.
    pub fn get_maturity_date(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::MaturityDateField::new(String::new());
        self.message.body.get_field(tag::MATURITY_DATE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `MaturityDate` is present, Tag 541.
    pub fn has_maturity_date(&self) -> bool {
        self.message.body.has(tag::MATURITY_DATE)
    }




    /// Sets `MaturityMonthYear`, Tag 200.
    pub fn set_maturity_month_year(&mut self, v: String) {
        self.message.body.set_field(tag::MATURITY_MONTH_YEAR, FIXString::from(v));
    }

    /// Gets `MaturityMonthYear`, Tag 200.
    pub fn get_maturity_month_year(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::MaturityMonthYearField::new(String::new());
        self.message.body.get_field(tag::MATURITY_MONTH_YEAR, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `MaturityMonthYear` is present, Tag 200.
    pub fn has_maturity_month_year(&self) -> bool {
        self.message.body.has(tag::MATURITY_MONTH_YEAR)
    }




    /// Sets `MaxFloor`, Tag 111.
    pub fn set_max_floor(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::MAX_FLOOR, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `MaxFloor`, Tag 111.
    pub fn get_max_floor(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::MaxFloorField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::MAX_FLOOR, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `MaxFloor` is present, Tag 111.
    pub fn has_max_floor(&self) -> bool {
        self.message.body.has(tag::MAX_FLOOR)
    }




    /// Sets `MaxShow`, Tag 210.
    pub fn set_max_show(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::MAX_SHOW, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `MaxShow`, Tag 210.
    pub fn get_max_show(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::MaxShowField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::MAX_SHOW, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `MaxShow` is present, Tag 210.
    pub fn has_max_show(&self) -> bool {
        self.message.body.has(tag::MAX_SHOW)
    }




    /// Sets `MinQty`, Tag 110.
    pub fn set_min_qty(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::MIN_QTY, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `MinQty`, Tag 110.
    pub fn get_min_qty(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::MinQtyField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::MIN_QTY, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `MinQty` is present, Tag 110.
    pub fn has_min_qty(&self) -> bool {
        self.message.body.has(tag::MIN_QTY)
    }




    /// Sets `MoneyLaunderingStatus`, Tag 481.
    pub fn set_money_laundering_status(&mut self, v: String) {
        self.message.body.set_field(tag::MONEY_LAUNDERING_STATUS, FIXString::from(v));
    }

    /// Gets `MoneyLaunderingStatus`, Tag 481.
    pub fn get_money_laundering_status(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::MoneyLaunderingStatusField::new(String::new());
        self.message.body.get_field(tag::MONEY_LAUNDERING_STATUS, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `MoneyLaunderingStatus` is present, Tag 481.
    pub fn has_money_laundering_status(&self) -> bool {
        self.message.body.has(tag::MONEY_LAUNDERING_STATUS)
    }




    /// Sets `NetMoney`, Tag 118.
    pub fn set_net_money(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::NET_MONEY, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `NetMoney`, Tag 118.
    pub fn get_net_money(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::NetMoneyField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::NET_MONEY, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `NetMoney` is present, Tag 118.
    pub fn has_net_money(&self) -> bool {
        self.message.body.has(tag::NET_MONEY)
    }




    /// Sets `NoAllocs`, Tag 78.
    pub fn set_no_allocs(&mut self, v: isize) {
        self.message.body.set_field(tag::NO_ALLOCS, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `NoAllocs`, Tag 78.
    pub fn get_no_allocs(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::NoAllocsField::new(0);
        self.message.body.get_field(tag::NO_ALLOCS, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `NoAllocs` is present, Tag 78.
    pub fn has_no_allocs(&self) -> bool {
        self.message.body.has(tag::NO_ALLOCS)
    }




    /// Sets `NoPartyIDs`, Tag 453.
    pub fn set_no_party_i_ds(&mut self, v: isize) {
        self.message.body.set_field(tag::NO_PARTY_I_DS, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `NoPartyIDs`, Tag 453.
    pub fn get_no_party_i_ds(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::NoPartyIDsField::new(0);
        self.message.body.get_field(tag::NO_PARTY_I_DS, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `NoPartyIDs` is present, Tag 453.
    pub fn has_no_party_i_ds(&self) -> bool {
        self.message.body.has(tag::NO_PARTY_I_DS)
    }




    /// Sets `NoSecurityAltID`, Tag 454.
    pub fn set_no_security_alt_id(&mut self, v: isize) {
        self.message.body.set_field(tag::NO_SECURITY_ALT_ID, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `NoSecurityAltID`, Tag 454.
    pub fn get_no_security_alt_id(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::NoSecurityAltIDField::new(0);
        self.message.body.get_field(tag::NO_SECURITY_ALT_ID, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `NoSecurityAltID` is present, Tag 454.
    pub fn has_no_security_alt_id(&self) -> bool {
        self.message.body.has(tag::NO_SECURITY_ALT_ID)
    }




    /// Sets `NoTradingSessions`, Tag 386.
    pub fn set_no_trading_sessions(&mut self, v: isize) {
        self.message.body.set_field(tag::NO_TRADING_SESSIONS, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `NoTradingSessions`, Tag 386.
    pub fn get_no_trading_sessions(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::NoTradingSessionsField::new(0);
        self.message.body.get_field(tag::NO_TRADING_SESSIONS, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `NoTradingSessions` is present, Tag 386.
    pub fn has_no_trading_sessions(&self) -> bool {
        self.message.body.has(tag::NO_TRADING_SESSIONS)
    }




    /// Sets `OptAttribute`, Tag 206.
    pub fn set_opt_attribute(&mut self, v: String) {
        self.message.body.set_field(tag::OPT_ATTRIBUTE, FIXString::from(v));
    }

    /// Gets `OptAttribute`, Tag 206.
    pub fn get_opt_attribute(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::OptAttributeField::new(String::new());
        self.message.body.get_field(tag::OPT_ATTRIBUTE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `OptAttribute` is present, Tag 206.
    pub fn has_opt_attribute(&self) -> bool {
        self.message.body.has(tag::OPT_ATTRIBUTE)
    }




    /// Sets `OrdType`, Tag 40.
    pub fn set_ord_type(&mut self, v: String) {
        self.message.body.set_field(tag::ORD_TYPE, FIXString::from(v));
    }

    /// Gets `OrdType`, Tag 40.
    pub fn get_ord_type(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::OrdTypeField::new(String::new());
        self.message.body.get_field(tag::ORD_TYPE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `OrdType` is present, Tag 40.
    pub fn has_ord_type(&self) -> bool {
        self.message.body.has(tag::ORD_TYPE)
    }




    /// Sets `OrderCapacity`, Tag 528.
    pub fn set_order_capacity(&mut self, v: String) {
        self.message.body.set_field(tag::ORDER_CAPACITY, FIXString::from(v));
    }

    /// Gets `OrderCapacity`, Tag 528.
    pub fn get_order_capacity(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::OrderCapacityField::new(String::new());
        self.message.body.get_field(tag::ORDER_CAPACITY, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `OrderCapacity` is present, Tag 528.
    pub fn has_order_capacity(&self) -> bool {
        self.message.body.has(tag::ORDER_CAPACITY)
    }




    /// Sets `OrderID`, Tag 37.
    pub fn set_order_id(&mut self, v: String) {
        self.message.body.set_field(tag::ORDER_ID, FIXString::from(v));
    }

    /// Gets `OrderID`, Tag 37.
    pub fn get_order_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::OrderIDField::new(String::new());
        self.message.body.get_field(tag::ORDER_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `OrderID` is present, Tag 37.
    pub fn has_order_id(&self) -> bool {
        self.message.body.has(tag::ORDER_ID)
    }




    /// Sets `OrderPercent`, Tag 516.
    pub fn set_order_percent(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::ORDER_PERCENT, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `OrderPercent`, Tag 516.
    pub fn get_order_percent(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::OrderPercentField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::ORDER_PERCENT, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `OrderPercent` is present, Tag 516.
    pub fn has_order_percent(&self) -> bool {
        self.message.body.has(tag::ORDER_PERCENT)
    }




    /// Sets `OrderQty`, Tag 38.
    pub fn set_order_qty(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::ORDER_QTY, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `OrderQty`, Tag 38.
    pub fn get_order_qty(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::OrderQtyField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::ORDER_QTY, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `OrderQty` is present, Tag 38.
    pub fn has_order_qty(&self) -> bool {
        self.message.body.has(tag::ORDER_QTY)
    }




    /// Sets `OrderQty2`, Tag 192.
    pub fn set_order_qty2(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::ORDER_QTY2, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `OrderQty2`, Tag 192.
    pub fn get_order_qty2(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::OrderQty2Field::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::ORDER_QTY2, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `OrderQty2` is present, Tag 192.
    pub fn has_order_qty2(&self) -> bool {
        self.message.body.has(tag::ORDER_QTY2)
    }




    /// Sets `OrderRestrictions`, Tag 529.
    pub fn set_order_restrictions(&mut self, v: String) {
        self.message.body.set_field(tag::ORDER_RESTRICTIONS, FIXString::from(v));
    }

    /// Gets `OrderRestrictions`, Tag 529.
    pub fn get_order_restrictions(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::OrderRestrictionsField::new(String::new());
        self.message.body.get_field(tag::ORDER_RESTRICTIONS, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `OrderRestrictions` is present, Tag 529.
    pub fn has_order_restrictions(&self) -> bool {
        self.message.body.has(tag::ORDER_RESTRICTIONS)
    }




    /// Sets `OrigClOrdID`, Tag 41.
    pub fn set_orig_cl_ord_id(&mut self, v: String) {
        self.message.body.set_field(tag::ORIG_CL_ORD_ID, FIXString::from(v));
    }

    /// Gets `OrigClOrdID`, Tag 41.
    pub fn get_orig_cl_ord_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::OrigClOrdIDField::new(String::new());
        self.message.body.get_field(tag::ORIG_CL_ORD_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `OrigClOrdID` is present, Tag 41.
    pub fn has_orig_cl_ord_id(&self) -> bool {
        self.message.body.has(tag::ORIG_CL_ORD_ID)
    }




    /// Sets `OrigOrdModTime`, Tag 586.
    pub fn set_orig_ord_mod_time(&mut self, v: Timestamp) {
        self.message.body.set_field(tag::ORIG_ORD_MOD_TIME, fixer::fix_utc_timestamp::FIXUTCTimestamp {
            time: v,
            precision: fixer::fix_utc_timestamp::TimestampPrecision::Millis,
        });
    }

    /// Gets `OrigOrdModTime`, Tag 586.
    pub fn get_orig_ord_mod_time(&self) -> Result<Timestamp, MessageRejectErrorEnum> {
        let mut fld = field::OrigOrdModTimeField::new(Timestamp::UNIX_EPOCH);
        self.message.body.get_field(tag::ORIG_ORD_MOD_TIME, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `OrigOrdModTime` is present, Tag 586.
    pub fn has_orig_ord_mod_time(&self) -> bool {
        self.message.body.has(tag::ORIG_ORD_MOD_TIME)
    }




    /// Sets `PegDifference`, Tag 211.
    pub fn set_peg_difference(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::PEG_DIFFERENCE, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `PegDifference`, Tag 211.
    pub fn get_peg_difference(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::PegDifferenceField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::PEG_DIFFERENCE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `PegDifference` is present, Tag 211.
    pub fn has_peg_difference(&self) -> bool {
        self.message.body.has(tag::PEG_DIFFERENCE)
    }




    /// Sets `PositionEffect`, Tag 77.
    pub fn set_position_effect(&mut self, v: String) {
        self.message.body.set_field(tag::POSITION_EFFECT, FIXString::from(v));
    }

    /// Gets `PositionEffect`, Tag 77.
    pub fn get_position_effect(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::PositionEffectField::new(String::new());
        self.message.body.get_field(tag::POSITION_EFFECT, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `PositionEffect` is present, Tag 77.
    pub fn has_position_effect(&self) -> bool {
        self.message.body.has(tag::POSITION_EFFECT)
    }




    /// Sets `PreallocMethod`, Tag 591.
    pub fn set_prealloc_method(&mut self, v: String) {
        self.message.body.set_field(tag::PREALLOC_METHOD, FIXString::from(v));
    }

    /// Gets `PreallocMethod`, Tag 591.
    pub fn get_prealloc_method(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::PreallocMethodField::new(String::new());
        self.message.body.get_field(tag::PREALLOC_METHOD, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `PreallocMethod` is present, Tag 591.
    pub fn has_prealloc_method(&self) -> bool {
        self.message.body.has(tag::PREALLOC_METHOD)
    }




    /// Sets `Price`, Tag 44.
    pub fn set_price(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::PRICE, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `Price`, Tag 44.
    pub fn get_price(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::PriceField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::PRICE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `Price` is present, Tag 44.
    pub fn has_price(&self) -> bool {
        self.message.body.has(tag::PRICE)
    }




    /// Sets `Price2`, Tag 640.
    pub fn set_price2(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::PRICE2, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `Price2`, Tag 640.
    pub fn get_price2(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::Price2Field::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::PRICE2, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `Price2` is present, Tag 640.
    pub fn has_price2(&self) -> bool {
        self.message.body.has(tag::PRICE2)
    }




    /// Sets `PriceType`, Tag 423.
    pub fn set_price_type(&mut self, v: isize) {
        self.message.body.set_field(tag::PRICE_TYPE, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `PriceType`, Tag 423.
    pub fn get_price_type(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::PriceTypeField::new(0);
        self.message.body.get_field(tag::PRICE_TYPE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `PriceType` is present, Tag 423.
    pub fn has_price_type(&self) -> bool {
        self.message.body.has(tag::PRICE_TYPE)
    }




    /// Sets `Product`, Tag 460.
    pub fn set_product(&mut self, v: isize) {
        self.message.body.set_field(tag::PRODUCT, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `Product`, Tag 460.
    pub fn get_product(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::ProductField::new(0);
        self.message.body.get_field(tag::PRODUCT, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `Product` is present, Tag 460.
    pub fn has_product(&self) -> bool {
        self.message.body.has(tag::PRODUCT)
    }




    /// Sets `QuantityType`, Tag 465.
    pub fn set_quantity_type(&mut self, v: isize) {
        self.message.body.set_field(tag::QUANTITY_TYPE, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `QuantityType`, Tag 465.
    pub fn get_quantity_type(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::QuantityTypeField::new(0);
        self.message.body.get_field(tag::QUANTITY_TYPE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `QuantityType` is present, Tag 465.
    pub fn has_quantity_type(&self) -> bool {
        self.message.body.has(tag::QUANTITY_TYPE)
    }




    /// Sets `RedemptionDate`, Tag 240.
    pub fn set_redemption_date(&mut self, v: String) {
        self.message.body.set_field(tag::REDEMPTION_DATE, FIXString::from(v));
    }

    /// Gets `RedemptionDate`, Tag 240.
    pub fn get_redemption_date(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::RedemptionDateField::new(String::new());
        self.message.body.get_field(tag::REDEMPTION_DATE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `RedemptionDate` is present, Tag 240.
    pub fn has_redemption_date(&self) -> bool {
        self.message.body.has(tag::REDEMPTION_DATE)
    }




    /// Sets `RegistID`, Tag 513.
    pub fn set_regist_id(&mut self, v: String) {
        self.message.body.set_field(tag::REGIST_ID, FIXString::from(v));
    }

    /// Gets `RegistID`, Tag 513.
    pub fn get_regist_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::RegistIDField::new(String::new());
        self.message.body.get_field(tag::REGIST_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `RegistID` is present, Tag 513.
    pub fn has_regist_id(&self) -> bool {
        self.message.body.has(tag::REGIST_ID)
    }




    /// Sets `RepoCollateralSecurityType`, Tag 239.
    pub fn set_repo_collateral_security_type(&mut self, v: isize) {
        self.message.body.set_field(tag::REPO_COLLATERAL_SECURITY_TYPE, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `RepoCollateralSecurityType`, Tag 239.
    pub fn get_repo_collateral_security_type(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::RepoCollateralSecurityTypeField::new(0);
        self.message.body.get_field(tag::REPO_COLLATERAL_SECURITY_TYPE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `RepoCollateralSecurityType` is present, Tag 239.
    pub fn has_repo_collateral_security_type(&self) -> bool {
        self.message.body.has(tag::REPO_COLLATERAL_SECURITY_TYPE)
    }




    /// Sets `RepurchaseRate`, Tag 227.
    pub fn set_repurchase_rate(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::REPURCHASE_RATE, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `RepurchaseRate`, Tag 227.
    pub fn get_repurchase_rate(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::RepurchaseRateField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::REPURCHASE_RATE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `RepurchaseRate` is present, Tag 227.
    pub fn has_repurchase_rate(&self) -> bool {
        self.message.body.has(tag::REPURCHASE_RATE)
    }




    /// Sets `RepurchaseTerm`, Tag 226.
    pub fn set_repurchase_term(&mut self, v: isize) {
        self.message.body.set_field(tag::REPURCHASE_TERM, fixer::fix_int::FIXInt::from(v));
    }

    /// Gets `RepurchaseTerm`, Tag 226.
    pub fn get_repurchase_term(&self) -> Result<isize, MessageRejectErrorEnum> {
        let mut fld = field::RepurchaseTermField::new(0);
        self.message.body.get_field(tag::REPURCHASE_TERM, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `RepurchaseTerm` is present, Tag 226.
    pub fn has_repurchase_term(&self) -> bool {
        self.message.body.has(tag::REPURCHASE_TERM)
    }




    /// Sets `RoundingDirection`, Tag 468.
    pub fn set_rounding_direction(&mut self, v: String) {
        self.message.body.set_field(tag::ROUNDING_DIRECTION, FIXString::from(v));
    }

    /// Gets `RoundingDirection`, Tag 468.
    pub fn get_rounding_direction(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::RoundingDirectionField::new(String::new());
        self.message.body.get_field(tag::ROUNDING_DIRECTION, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `RoundingDirection` is present, Tag 468.
    pub fn has_rounding_direction(&self) -> bool {
        self.message.body.has(tag::ROUNDING_DIRECTION)
    }




    /// Sets `RoundingModulus`, Tag 469.
    pub fn set_rounding_modulus(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::ROUNDING_MODULUS, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `RoundingModulus`, Tag 469.
    pub fn get_rounding_modulus(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::RoundingModulusField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::ROUNDING_MODULUS, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `RoundingModulus` is present, Tag 469.
    pub fn has_rounding_modulus(&self) -> bool {
        self.message.body.has(tag::ROUNDING_MODULUS)
    }




    /// Sets `Rule80A`, Tag 47.
    pub fn set_rule80_a(&mut self, v: String) {
        self.message.body.set_field(tag::RULE80_A, FIXString::from(v));
    }

    /// Gets `Rule80A`, Tag 47.
    pub fn get_rule80_a(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::Rule80AField::new(String::new());
        self.message.body.get_field(tag::RULE80_A, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `Rule80A` is present, Tag 47.
    pub fn has_rule80_a(&self) -> bool {
        self.message.body.has(tag::RULE80_A)
    }




    /// Sets `SecondaryClOrdID`, Tag 526.
    pub fn set_secondary_cl_ord_id(&mut self, v: String) {
        self.message.body.set_field(tag::SECONDARY_CL_ORD_ID, FIXString::from(v));
    }

    /// Gets `SecondaryClOrdID`, Tag 526.
    pub fn get_secondary_cl_ord_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SecondaryClOrdIDField::new(String::new());
        self.message.body.get_field(tag::SECONDARY_CL_ORD_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `SecondaryClOrdID` is present, Tag 526.
    pub fn has_secondary_cl_ord_id(&self) -> bool {
        self.message.body.has(tag::SECONDARY_CL_ORD_ID)
    }




    /// Sets `SecurityDesc`, Tag 107.
    pub fn set_security_desc(&mut self, v: String) {
        self.message.body.set_field(tag::SECURITY_DESC, FIXString::from(v));
    }

    /// Gets `SecurityDesc`, Tag 107.
    pub fn get_security_desc(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SecurityDescField::new(String::new());
        self.message.body.get_field(tag::SECURITY_DESC, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `SecurityDesc` is present, Tag 107.
    pub fn has_security_desc(&self) -> bool {
        self.message.body.has(tag::SECURITY_DESC)
    }




    /// Sets `SecurityExchange`, Tag 207.
    pub fn set_security_exchange(&mut self, v: String) {
        self.message.body.set_field(tag::SECURITY_EXCHANGE, FIXString::from(v));
    }

    /// Gets `SecurityExchange`, Tag 207.
    pub fn get_security_exchange(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SecurityExchangeField::new(String::new());
        self.message.body.get_field(tag::SECURITY_EXCHANGE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `SecurityExchange` is present, Tag 207.
    pub fn has_security_exchange(&self) -> bool {
        self.message.body.has(tag::SECURITY_EXCHANGE)
    }




    /// Sets `SecurityID`, Tag 48.
    pub fn set_security_id(&mut self, v: String) {
        self.message.body.set_field(tag::SECURITY_ID, FIXString::from(v));
    }

    /// Gets `SecurityID`, Tag 48.
    pub fn get_security_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SecurityIDField::new(String::new());
        self.message.body.get_field(tag::SECURITY_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `SecurityID` is present, Tag 48.
    pub fn has_security_id(&self) -> bool {
        self.message.body.has(tag::SECURITY_ID)
    }




    /// Sets `SecurityIDSource`, Tag 22.
    pub fn set_security_id_source(&mut self, v: String) {
        self.message.body.set_field(tag::SECURITY_ID_SOURCE, FIXString::from(v));
    }

    /// Gets `SecurityIDSource`, Tag 22.
    pub fn get_security_id_source(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SecurityIDSourceField::new(String::new());
        self.message.body.get_field(tag::SECURITY_ID_SOURCE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `SecurityIDSource` is present, Tag 22.
    pub fn has_security_id_source(&self) -> bool {
        self.message.body.has(tag::SECURITY_ID_SOURCE)
    }




    /// Sets `SecurityType`, Tag 167.
    pub fn set_security_type(&mut self, v: String) {
        self.message.body.set_field(tag::SECURITY_TYPE, FIXString::from(v));
    }

    /// Gets `SecurityType`, Tag 167.
    pub fn get_security_type(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SecurityTypeField::new(String::new());
        self.message.body.get_field(tag::SECURITY_TYPE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `SecurityType` is present, Tag 167.
    pub fn has_security_type(&self) -> bool {
        self.message.body.has(tag::SECURITY_TYPE)
    }




    /// Sets `SettlCurrency`, Tag 120.
    pub fn set_settl_currency(&mut self, v: String) {
        self.message.body.set_field(tag::SETTL_CURRENCY, FIXString::from(v));
    }

    /// Gets `SettlCurrency`, Tag 120.
    pub fn get_settl_currency(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SettlCurrencyField::new(String::new());
        self.message.body.get_field(tag::SETTL_CURRENCY, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `SettlCurrency` is present, Tag 120.
    pub fn has_settl_currency(&self) -> bool {
        self.message.body.has(tag::SETTL_CURRENCY)
    }




    /// Sets `SettlmntTyp`, Tag 63.
    pub fn set_settlmnt_typ(&mut self, v: String) {
        self.message.body.set_field(tag::SETTLMNT_TYP, FIXString::from(v));
    }

    /// Gets `SettlmntTyp`, Tag 63.
    pub fn get_settlmnt_typ(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SettlmntTypField::new(String::new());
        self.message.body.get_field(tag::SETTLMNT_TYP, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `SettlmntTyp` is present, Tag 63.
    pub fn has_settlmnt_typ(&self) -> bool {
        self.message.body.has(tag::SETTLMNT_TYP)
    }




    /// Sets `Side`, Tag 54.
    pub fn set_side(&mut self, v: String) {
        self.message.body.set_field(tag::SIDE, FIXString::from(v));
    }

    /// Gets `Side`, Tag 54.
    pub fn get_side(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SideField::new(String::new());
        self.message.body.get_field(tag::SIDE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `Side` is present, Tag 54.
    pub fn has_side(&self) -> bool {
        self.message.body.has(tag::SIDE)
    }




    /// Sets `SolicitedFlag`, Tag 377.
    pub fn set_solicited_flag(&mut self, v: bool) {
        self.message.body.set_field(tag::SOLICITED_FLAG, fixer::fix_boolean::FIXBoolean::from(v));
    }

    /// Gets `SolicitedFlag`, Tag 377.
    pub fn get_solicited_flag(&self) -> Result<bool, MessageRejectErrorEnum> {
        let mut fld = field::SolicitedFlagField::new(false);
        self.message.body.get_field(tag::SOLICITED_FLAG, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `SolicitedFlag` is present, Tag 377.
    pub fn has_solicited_flag(&self) -> bool {
        self.message.body.has(tag::SOLICITED_FLAG)
    }




    /// Sets `Spread`, Tag 218.
    pub fn set_spread(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::SPREAD, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `Spread`, Tag 218.
    pub fn get_spread(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::SpreadField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::SPREAD, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `Spread` is present, Tag 218.
    pub fn has_spread(&self) -> bool {
        self.message.body.has(tag::SPREAD)
    }




    /// Sets `StateOrProvinceOfIssue`, Tag 471.
    pub fn set_state_or_province_of_issue(&mut self, v: String) {
        self.message.body.set_field(tag::STATE_OR_PROVINCE_OF_ISSUE, FIXString::from(v));
    }

    /// Gets `StateOrProvinceOfIssue`, Tag 471.
    pub fn get_state_or_province_of_issue(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::StateOrProvinceOfIssueField::new(String::new());
        self.message.body.get_field(tag::STATE_OR_PROVINCE_OF_ISSUE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `StateOrProvinceOfIssue` is present, Tag 471.
    pub fn has_state_or_province_of_issue(&self) -> bool {
        self.message.body.has(tag::STATE_OR_PROVINCE_OF_ISSUE)
    }




    /// Sets `StopPx`, Tag 99.
    pub fn set_stop_px(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::STOP_PX, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `StopPx`, Tag 99.
    pub fn get_stop_px(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::StopPxField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::STOP_PX, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `StopPx` is present, Tag 99.
    pub fn has_stop_px(&self) -> bool {
        self.message.body.has(tag::STOP_PX)
    }




    /// Sets `StrikePrice`, Tag 202.
    pub fn set_strike_price(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::STRIKE_PRICE, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `StrikePrice`, Tag 202.
    pub fn get_strike_price(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::StrikePriceField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::STRIKE_PRICE, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `StrikePrice` is present, Tag 202.
    pub fn has_strike_price(&self) -> bool {
        self.message.body.has(tag::STRIKE_PRICE)
    }




    /// Sets `Symbol`, Tag 55.
    pub fn set_symbol(&mut self, v: String) {
        self.message.body.set_field(tag::SYMBOL, FIXString::from(v));
    }

    /// Gets `Symbol`, Tag 55.
    pub fn get_symbol(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SymbolField::new(String::new());
        self.message.body.get_field(tag::SYMBOL, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `Symbol` is present, Tag 55.
    pub fn has_symbol(&self) -> bool {
        self.message.body.has(tag::SYMBOL)
    }




    /// Sets `SymbolSfx`, Tag 65.
    pub fn set_symbol_sfx(&mut self, v: String) {
        self.message.body.set_field(tag::SYMBOL_SFX, FIXString::from(v));
    }

    /// Gets `SymbolSfx`, Tag 65.
    pub fn get_symbol_sfx(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::SymbolSfxField::new(String::new());
        self.message.body.get_field(tag::SYMBOL_SFX, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `SymbolSfx` is present, Tag 65.
    pub fn has_symbol_sfx(&self) -> bool {
        self.message.body.has(tag::SYMBOL_SFX)
    }




    /// Sets `Text`, Tag 58.
    pub fn set_text(&mut self, v: String) {
        self.message.body.set_field(tag::TEXT, FIXString::from(v));
    }

    /// Gets `Text`, Tag 58.
    pub fn get_text(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::TextField::new(String::new());
        self.message.body.get_field(tag::TEXT, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `Text` is present, Tag 58.
    pub fn has_text(&self) -> bool {
        self.message.body.has(tag::TEXT)
    }




    /// Sets `TimeInForce`, Tag 59.
    pub fn set_time_in_force(&mut self, v: String) {
        self.message.body.set_field(tag::TIME_IN_FORCE, FIXString::from(v));
    }

    /// Gets `TimeInForce`, Tag 59.
    pub fn get_time_in_force(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::TimeInForceField::new(String::new());
        self.message.body.get_field(tag::TIME_IN_FORCE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `TimeInForce` is present, Tag 59.
    pub fn has_time_in_force(&self) -> bool {
        self.message.body.has(tag::TIME_IN_FORCE)
    }




    /// Sets `TradeOriginationDate`, Tag 229.
    pub fn set_trade_origination_date(&mut self, v: String) {
        self.message.body.set_field(tag::TRADE_ORIGINATION_DATE, FIXString::from(v));
    }

    /// Gets `TradeOriginationDate`, Tag 229.
    pub fn get_trade_origination_date(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::TradeOriginationDateField::new(String::new());
        self.message.body.get_field(tag::TRADE_ORIGINATION_DATE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `TradeOriginationDate` is present, Tag 229.
    pub fn has_trade_origination_date(&self) -> bool {
        self.message.body.has(tag::TRADE_ORIGINATION_DATE)
    }




    /// Sets `TransactTime`, Tag 60.
    pub fn set_transact_time(&mut self, v: Timestamp) {
        self.message.body.set_field(tag::TRANSACT_TIME, fixer::fix_utc_timestamp::FIXUTCTimestamp {
            time: v,
            precision: fixer::fix_utc_timestamp::TimestampPrecision::Millis,
        });
    }

    /// Gets `TransactTime`, Tag 60.
    pub fn get_transact_time(&self) -> Result<Timestamp, MessageRejectErrorEnum> {
        let mut fld = field::TransactTimeField::new(Timestamp::UNIX_EPOCH);
        self.message.body.get_field(tag::TRANSACT_TIME, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `TransactTime` is present, Tag 60.
    pub fn has_transact_time(&self) -> bool {
        self.message.body.has(tag::TRANSACT_TIME)
    }




    /// Sets `Yield`, Tag 236.
    pub fn set_yield(&mut self, val: Decimal, scale: i32) {
        self.message.body.set_field(tag::YIELD, fixer::fix_decimal::FIXDecimal { decimal: val, scale });
    }

    /// Gets `Yield`, Tag 236.
    pub fn get_yield(&self) -> Result<Decimal, MessageRejectErrorEnum> {
        let mut fld = field::YieldField::new(Decimal::ZERO, 0);
        self.message.body.get_field(tag::YIELD, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `Yield` is present, Tag 236.
    pub fn has_yield(&self) -> bool {
        self.message.body.has(tag::YIELD)
    }




    /// Sets `YieldType`, Tag 235.
    pub fn set_yield_type(&mut self, v: String) {
        self.message.body.set_field(tag::YIELD_TYPE, FIXString::from(v));
    }

    /// Gets `YieldType`, Tag 235.
    pub fn get_yield_type(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::YieldTypeField::new(String::new());
        self.message.body.get_field(tag::YIELD_TYPE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `YieldType` is present, Tag 235.
    pub fn has_yield_type(&self) -> bool {
        self.message.body.has(tag::YIELD_TYPE)
    }


}

/// `RouteOut` is the callback type for routing `OrderCancelReplaceRequest` messages.
pub type RouteOut = fn(msg: OrderCancelReplaceRequest, session_id: SessionID) -> Result<(), MessageRejectErrorEnum>;

/// Route type returned by the `route` function.
pub type Route = (&'static str, &'static str, Box<dyn Fn(&Message, SessionID) -> Result<(), MessageRejectErrorEnum> + Send>);

/// Returns the begin string, message type, and route function for `OrderCancelReplaceRequest`.
pub fn route(router: RouteOut) -> Route {
    let r = move |msg: &Message, session_id: SessionID| -> Result<(), MessageRejectErrorEnum> {
        router(OrderCancelReplaceRequest::from_message(msg.clone()), session_id)
    };
    ("FIX.4.3", "G", Box::new(r))
}