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
// 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 `fix40` `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, symbol: field::SymbolField, side: field::SideField, order_qty: field::OrderQtyField, 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::SYMBOL, symbol.0);

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

        msg.body.set_field(tag::ORDER_QTY, order_qty.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 `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 `ClientID`, Tag 109.
    pub fn set_client_id(&mut self, v: String) {
        self.message.body.set_field(tag::CLIENT_ID, FIXString::from(v));
    }

    /// Gets `ClientID`, Tag 109.
    pub fn get_client_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ClientIDField::new(String::new());
        self.message.body.get_field(tag::CLIENT_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ClientID` is present, Tag 109.
    pub fn has_client_id(&self) -> bool {
        self.message.body.has(tag::CLIENT_ID)
    }




    /// 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 `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 `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 `ExecBroker`, Tag 76.
    pub fn set_exec_broker(&mut self, v: String) {
        self.message.body.set_field(tag::EXEC_BROKER, FIXString::from(v));
    }

    /// Gets `ExecBroker`, Tag 76.
    pub fn get_exec_broker(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::ExecBrokerField::new(String::new());
        self.message.body.get_field(tag::EXEC_BROKER, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `ExecBroker` is present, Tag 76.
    pub fn has_exec_broker(&self) -> bool {
        self.message.body.has(tag::EXEC_BROKER)
    }




    /// 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 `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 `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 `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 `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 `IDSource`, Tag 22.
    pub fn set_id_source(&mut self, v: String) {
        self.message.body.set_field(tag::ID_SOURCE, FIXString::from(v));
    }

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


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




    /// 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 `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 `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 `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 `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 `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 `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 `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 `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 `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 `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 `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 `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 `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)
    }


}

/// `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.0", "G", Box::new(r))
}