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
// 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;

/// `IndicationofInterest` is the `fix40` `IndicationofInterest` type, `MsgType` = 6.
pub struct IndicationofInterest {
    pub message: Message,
}

impl IndicationofInterest {
    /// Creates a new `IndicationofInterest` with required fields.
    pub fn new(io_iid: field::IOIidField, ioi_trans_type: field::IOITransTypeField, symbol: field::SymbolField, side: field::SideField, ioi_shares: field::IOISharesField) -> Self {
        let mut msg = Message::new();
        msg.header.set_field(tag::MSG_TYPE, FIXString::from("6".to_string()));

        msg.body.set_field(tag::IO_IID, io_iid.0);

        msg.body.set_field(tag::IOI_TRANS_TYPE, ioi_trans_type.0);

        msg.body.set_field(tag::SYMBOL, symbol.0);

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

        msg.body.set_field(tag::IOI_SHARES, ioi_shares.0);

        Self { message: msg }
    }

    /// Creates a `IndicationofInterest` 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 `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 `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 `IOINaturalFlag`, Tag 130.
    pub fn set_ioi_natural_flag(&mut self, v: bool) {
        self.message.body.set_field(tag::IOI_NATURAL_FLAG, fixer::fix_boolean::FIXBoolean::from(v));
    }

    /// Gets `IOINaturalFlag`, Tag 130.
    pub fn get_ioi_natural_flag(&self) -> Result<bool, MessageRejectErrorEnum> {
        let mut fld = field::IOINaturalFlagField::new(false);
        self.message.body.get_field(tag::IOI_NATURAL_FLAG, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `IOINaturalFlag` is present, Tag 130.
    pub fn has_ioi_natural_flag(&self) -> bool {
        self.message.body.has(tag::IOI_NATURAL_FLAG)
    }




    /// Sets `IOIOthSvc`, Tag 24.
    pub fn set_ioi_oth_svc(&mut self, v: String) {
        self.message.body.set_field(tag::IOI_OTH_SVC, FIXString::from(v));
    }

    /// Gets `IOIOthSvc`, Tag 24.
    pub fn get_ioi_oth_svc(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::IOIOthSvcField::new(String::new());
        self.message.body.get_field(tag::IOI_OTH_SVC, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `IOIOthSvc` is present, Tag 24.
    pub fn has_ioi_oth_svc(&self) -> bool {
        self.message.body.has(tag::IOI_OTH_SVC)
    }




    /// Sets `IOIQltyInd`, Tag 25.
    pub fn set_ioi_qlty_ind(&mut self, v: String) {
        self.message.body.set_field(tag::IOI_QLTY_IND, FIXString::from(v));
    }

    /// Gets `IOIQltyInd`, Tag 25.
    pub fn get_ioi_qlty_ind(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::IOIQltyIndField::new(String::new());
        self.message.body.get_field(tag::IOI_QLTY_IND, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `IOIQltyInd` is present, Tag 25.
    pub fn has_ioi_qlty_ind(&self) -> bool {
        self.message.body.has(tag::IOI_QLTY_IND)
    }




    /// Sets `IOIQualifier`, Tag 104.
    pub fn set_ioi_qualifier(&mut self, v: String) {
        self.message.body.set_field(tag::IOI_QUALIFIER, FIXString::from(v));
    }

    /// Gets `IOIQualifier`, Tag 104.
    pub fn get_ioi_qualifier(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::IOIQualifierField::new(String::new());
        self.message.body.get_field(tag::IOI_QUALIFIER, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `IOIQualifier` is present, Tag 104.
    pub fn has_ioi_qualifier(&self) -> bool {
        self.message.body.has(tag::IOI_QUALIFIER)
    }




    /// Sets `IOIRefID`, Tag 26.
    pub fn set_ioi_ref_id(&mut self, v: String) {
        self.message.body.set_field(tag::IOI_REF_ID, FIXString::from(v));
    }

    /// Gets `IOIRefID`, Tag 26.
    pub fn get_ioi_ref_id(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::IOIRefIDField::new(String::new());
        self.message.body.get_field(tag::IOI_REF_ID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `IOIRefID` is present, Tag 26.
    pub fn has_ioi_ref_id(&self) -> bool {
        self.message.body.has(tag::IOI_REF_ID)
    }




    /// Sets `IOIShares`, Tag 27.
    pub fn set_ioi_shares(&mut self, v: String) {
        self.message.body.set_field(tag::IOI_SHARES, FIXString::from(v));
    }

    /// Gets `IOIShares`, Tag 27.
    pub fn get_ioi_shares(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::IOISharesField::new(String::new());
        self.message.body.get_field(tag::IOI_SHARES, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `IOIShares` is present, Tag 27.
    pub fn has_ioi_shares(&self) -> bool {
        self.message.body.has(tag::IOI_SHARES)
    }




    /// Sets `IOITransType`, Tag 28.
    pub fn set_ioi_trans_type(&mut self, v: String) {
        self.message.body.set_field(tag::IOI_TRANS_TYPE, FIXString::from(v));
    }

    /// Gets `IOITransType`, Tag 28.
    pub fn get_ioi_trans_type(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::IOITransTypeField::new(String::new());
        self.message.body.get_field(tag::IOI_TRANS_TYPE, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `IOITransType` is present, Tag 28.
    pub fn has_ioi_trans_type(&self) -> bool {
        self.message.body.has(tag::IOI_TRANS_TYPE)
    }




    /// Sets `IOIid`, Tag 23.
    pub fn set_io_iid(&mut self, v: String) {
        self.message.body.set_field(tag::IO_IID, FIXString::from(v));
    }

    /// Gets `IOIid`, Tag 23.
    pub fn get_io_iid(&self) -> Result<String, MessageRejectErrorEnum> {
        let mut fld = field::IOIidField::new(String::new());
        self.message.body.get_field(tag::IO_IID, &mut fld.0)?;
        Ok(fld.value().to_string())
    }


    /// Returns true if `IOIid` is present, Tag 23.
    pub fn has_io_iid(&self) -> bool {
        self.message.body.has(tag::IO_IID)
    }




    /// 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 `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 `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 `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 `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 `ValidUntilTime`, Tag 62.
    pub fn set_valid_until_time(&mut self, v: Timestamp) {
        self.message.body.set_field(tag::VALID_UNTIL_TIME, fixer::fix_utc_timestamp::FIXUTCTimestamp {
            time: v,
            precision: fixer::fix_utc_timestamp::TimestampPrecision::Millis,
        });
    }

    /// Gets `ValidUntilTime`, Tag 62.
    pub fn get_valid_until_time(&self) -> Result<Timestamp, MessageRejectErrorEnum> {
        let mut fld = field::ValidUntilTimeField::new(Timestamp::UNIX_EPOCH);
        self.message.body.get_field(tag::VALID_UNTIL_TIME, &mut fld.0)?;
        Ok(fld.value())
    }


    /// Returns true if `ValidUntilTime` is present, Tag 62.
    pub fn has_valid_until_time(&self) -> bool {
        self.message.body.has(tag::VALID_UNTIL_TIME)
    }


}

/// `RouteOut` is the callback type for routing `IndicationofInterest` messages.
pub type RouteOut = fn(msg: IndicationofInterest, 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 `IndicationofInterest`.
pub fn route(router: RouteOut) -> Route {
    let r = move |msg: &Message, session_id: SessionID| -> Result<(), MessageRejectErrorEnum> {
        router(IndicationofInterest::from_message(msg.clone()), session_id)
    };
    ("FIX.4.0", "6", Box::new(r))
}