rust_iso20022 0.1.1

ISO 20022 message definitions and external code sets for Rust, generated from the official XSD schemas.
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
// @generated by src/bin/codegen.rs from the ISO 20022 XSD schema. Do not edit.
#![allow(clippy::all)]
#![allow(non_snake_case, non_camel_case_types, dead_code, unused_imports)]
// yaserde_derive 0.7 emits trait impls inside nested choice submodules, which
// trips the `non_local_definitions` lint on recent rustc. The generated code is
// correct; silence the lint here.
#![allow(non_local_definitions)]
use std::str::FromStr;
use crate::validate::Validate;
use yaserde_derive::{YaDeserialize, YaSerialize};

// pub type Document = Document;
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct ActiveCurrencyCode (pub String);
crate::simple_type!(ActiveCurrencyCode);

impl Validate for ActiveCurrencyCode {}
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct ContactDetails4 {
    #[yaserde(rename = "Nm")]
    #[cfg_attr(feature = "serde", serde(rename = "Nm"))]
    pub nm: Max140Text,

    #[yaserde(rename = "PhneNb")]
    #[cfg_attr(feature = "serde", serde(rename = "PhneNb"))]
    pub phne_nb: PhoneNumber,

    #[yaserde(rename = "EmailAdr")]
    #[cfg_attr(feature = "serde", serde(rename = "EmailAdr"))]
    pub email_adr: Max2048Text,

    #[yaserde(rename = "Fctn")]
    #[cfg_attr(feature = "serde", serde(rename = "Fctn"))]
    pub fctn: Max140Text,
}

impl Validate for ContactDetails4 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct CountryCode (pub String);
crate::simple_type!(CountryCode);

impl Validate for CountryCode {}
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct Document {
    #[yaserde(rename = "SttlmIntlrRpt")]
    #[cfg_attr(feature = "serde", serde(rename = "SttlmIntlrRpt"))]
    pub sttlm_intlr_rpt: SettlementInternaliserReportV01,
}

impl Validate for Document {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct Exact2UpperCaseAlphaText (pub String);
crate::simple_type!(Exact2UpperCaseAlphaText);

impl Validate for Exact2UpperCaseAlphaText {}
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct Isodate (pub String);
crate::simple_type!(Isodate);

impl Validate for Isodate {}
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct IsodateTime (pub String);
crate::simple_type!(IsodateTime);

impl Validate for IsodateTime {}
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct InternalisationData1 {
    #[yaserde(rename = "Aggt")]
    #[cfg_attr(feature = "serde", serde(rename = "Aggt"))]
    pub aggt: InternalisationData2,

    #[yaserde(rename = "FaildRate")]
    #[cfg_attr(feature = "serde", serde(rename = "FaildRate"))]
    pub faild_rate: InternalisationDataRate1,
}

impl Validate for InternalisationData1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct InternalisationData2 {
    #[yaserde(rename = "Sttld")]
    #[cfg_attr(feature = "serde", serde(rename = "Sttld"))]
    pub sttld: InternalisationDataVolume1,

    #[yaserde(rename = "Faild")]
    #[cfg_attr(feature = "serde", serde(rename = "Faild"))]
    pub faild: InternalisationDataVolume1,

    #[yaserde(rename = "Ttl")]
    #[cfg_attr(feature = "serde", serde(rename = "Ttl"))]
    pub ttl: InternalisationDataVolume1,
}

impl Validate for InternalisationData2 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct InternalisationDataRate1 {
    #[yaserde(rename = "VolPctg")]
    #[cfg_attr(feature = "serde", serde(rename = "VolPctg"))]
    pub vol_pctg: PercentageRate,

    #[yaserde(rename = "Val")]
    #[cfg_attr(feature = "serde", serde(rename = "Val"))]
    pub val: PercentageRate,
}

impl Validate for InternalisationDataRate1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct InternalisationDataVolume1 {
    #[yaserde(rename = "Vol")]
    #[cfg_attr(feature = "serde", serde(rename = "Vol"))]
    pub vol: Max20PositiveNumber,

    #[yaserde(rename = "Val")]
    #[cfg_attr(feature = "serde", serde(rename = "Val"))]
    pub val: Max20PositiveDecimalNumber,
}

impl Validate for InternalisationDataVolume1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct IssuerCSDIdentification1 {
    #[yaserde(rename = "LEI")]
    #[cfg_attr(feature = "serde", serde(rename = "LEI"))]
    pub lei: Leiidentifier,

    #[yaserde(rename = "FrstTwoCharsInstrmId")]
    #[cfg_attr(feature = "serde", serde(rename = "FrstTwoCharsInstrmId"))]
    pub frst_two_chars_instrm_id: Exact2UpperCaseAlphaText,

    #[yaserde(rename = "Ctry")]
    #[cfg_attr(feature = "serde", serde(rename = "Ctry"))]
    pub ctry: CountryCode,
}

impl Validate for IssuerCSDIdentification1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct IssuerCSDReport1 {
    #[yaserde(rename = "Id")]
    #[cfg_attr(feature = "serde", serde(rename = "Id"))]
    pub id: IssuerCSDIdentification1,

    #[yaserde(rename = "OvrllTtl")]
    #[cfg_attr(feature = "serde", serde(rename = "OvrllTtl"))]
    pub ovrll_ttl: InternalisationData1,

    #[yaserde(rename = "FinInstrm")]
    #[cfg_attr(feature = "serde", serde(rename = "FinInstrm"))]
    pub fin_instrm: SettlementInternaliserFinancialInstrument1,

    #[yaserde(rename = "TxTp")]
    #[cfg_attr(feature = "serde", serde(rename = "TxTp"))]
    pub tx_tp: SettlementInternaliserTransactionType1,

    #[yaserde(rename = "ClntTp")]
    #[cfg_attr(feature = "serde", serde(rename = "ClntTp"))]
    pub clnt_tp: SettlementInternaliserClientType1,

    #[yaserde(rename = "TtlCshTrf")]
    #[cfg_attr(feature = "serde", serde(rename = "TtlCshTrf"))]
    pub ttl_csh_trf: InternalisationData1,
}

impl Validate for IssuerCSDReport1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct Leiidentifier (pub String);
crate::simple_type!(Leiidentifier);

impl Validate for Leiidentifier {}
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct Max140Text (pub String);
crate::simple_type!(Max140Text);

impl Validate for Max140Text {
    fn validate(&self) -> Result<(), String> { 
        #[allow(clippy::len_zero)]
        if self.0.len() < 1 {
            return Err(format!("MinLength validation error. \nExpected: 0 length >= 1 \nActual: 0 length == {}", self.0.len()));
        }
        if self.0.len() > 140 {
            return Err(format!("MaxLength validation error. \nExpected: 0 length <= 140 \nActual: 0 length == {}", self.0.len()));
        }
        Ok(())
    }
}

#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct Max2048Text (pub String);
crate::simple_type!(Max2048Text);

impl Validate for Max2048Text {
    fn validate(&self) -> Result<(), String> { 
        #[allow(clippy::len_zero)]
        if self.0.len() < 1 {
            return Err(format!("MinLength validation error. \nExpected: 0 length >= 1 \nActual: 0 length == {}", self.0.len()));
        }
        if self.0.len() > 2048 {
            return Err(format!("MaxLength validation error. \nExpected: 0 length <= 2048 \nActual: 0 length == {}", self.0.len()));
        }
        Ok(())
    }
}

#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct Max20PositiveDecimalNumber (pub String);
crate::simple_type!(Max20PositiveDecimalNumber);

impl Validate for Max20PositiveDecimalNumber {
    fn validate(&self) -> Result<(), String> { 
        if self.0 < "0".parse::<String>().unwrap() {
            return Err(format!("MinInclusive validation error: invalid value of 0! \nExpected: 0 >= 0.\nActual: 0 == {}", self.0));
        }
        Ok(())
    }
}

#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct Max20PositiveNumber (pub String);
crate::simple_type!(Max20PositiveNumber);

impl Validate for Max20PositiveNumber {
    fn validate(&self) -> Result<(), String> { 
        if self.0 < "0".parse::<String>().unwrap() {
            return Err(format!("MinInclusive validation error: invalid value of 0! \nExpected: 0 >= 0.\nActual: 0 == {}", self.0));
        }
        Ok(())
    }
}

#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct Max350Text (pub String);
crate::simple_type!(Max350Text);

impl Validate for Max350Text {
    fn validate(&self) -> Result<(), String> { 
        #[allow(clippy::len_zero)]
        if self.0.len() < 1 {
            return Err(format!("MinLength validation error. \nExpected: 0 length >= 1 \nActual: 0 length == {}", self.0.len()));
        }
        if self.0.len() > 350 {
            return Err(format!("MaxLength validation error. \nExpected: 0 length <= 350 \nActual: 0 length == {}", self.0.len()));
        }
        Ok(())
    }
}

#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct PercentageRate (pub String);
crate::simple_type!(PercentageRate);

impl Validate for PercentageRate {}
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug)]
pub struct PhoneNumber (pub String);
crate::simple_type!(PhoneNumber);

impl Validate for PhoneNumber {}
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct SettlementInternaliser1 {
    #[yaserde(rename = "Id")]
    #[cfg_attr(feature = "serde", serde(rename = "Id"))]
    pub id: SettlementInternaliserIdentification1,

    #[yaserde(rename = "OvrllTtl")]
    #[cfg_attr(feature = "serde", serde(rename = "OvrllTtl"))]
    pub ovrll_ttl: InternalisationData1,

    #[yaserde(rename = "FinInstrm")]
    #[cfg_attr(feature = "serde", serde(rename = "FinInstrm"))]
    pub fin_instrm: SettlementInternaliserFinancialInstrument1,

    #[yaserde(rename = "TxTp")]
    #[cfg_attr(feature = "serde", serde(rename = "TxTp"))]
    pub tx_tp: SettlementInternaliserTransactionType1,

    #[yaserde(rename = "ClntTp")]
    #[cfg_attr(feature = "serde", serde(rename = "ClntTp"))]
    pub clnt_tp: SettlementInternaliserClientType1,

    #[yaserde(rename = "TtlCshTrf")]
    #[cfg_attr(feature = "serde", serde(rename = "TtlCshTrf"))]
    pub ttl_csh_trf: InternalisationData1,
}

impl Validate for SettlementInternaliser1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct SettlementInternaliserClientType1 {
    #[yaserde(rename = "Prfssnl")]
    #[cfg_attr(feature = "serde", serde(rename = "Prfssnl"))]
    pub prfssnl: InternalisationData1,

    #[yaserde(rename = "Rtl")]
    #[cfg_attr(feature = "serde", serde(rename = "Rtl"))]
    pub rtl: InternalisationData1,
}

impl Validate for SettlementInternaliserClientType1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct SettlementInternaliserFinancialInstrument1 {
    #[yaserde(rename = "Eqty")]
    #[cfg_attr(feature = "serde", serde(rename = "Eqty"))]
    pub eqty: InternalisationData1,

    #[yaserde(rename = "SvrgnDebt")]
    #[cfg_attr(feature = "serde", serde(rename = "SvrgnDebt"))]
    pub svrgn_debt: InternalisationData1,

    #[yaserde(rename = "Bd")]
    #[cfg_attr(feature = "serde", serde(rename = "Bd"))]
    pub bd: InternalisationData1,

    #[yaserde(rename = "OthrTrfblScties")]
    #[cfg_attr(feature = "serde", serde(rename = "OthrTrfblScties"))]
    pub othr_trfbl_scties: InternalisationData1,

    #[yaserde(rename = "XchgTradgFnds")]
    #[cfg_attr(feature = "serde", serde(rename = "XchgTradgFnds"))]
    pub xchg_tradg_fnds: InternalisationData1,

    #[yaserde(rename = "CllctvInvstmtUdrtkgs")]
    #[cfg_attr(feature = "serde", serde(rename = "CllctvInvstmtUdrtkgs"))]
    pub cllctv_invstmt_udrtkgs: InternalisationData1,

    #[yaserde(rename = "MnyMktInstrm")]
    #[cfg_attr(feature = "serde", serde(rename = "MnyMktInstrm"))]
    pub mny_mkt_instrm: InternalisationData1,

    #[yaserde(rename = "EmssnAllwnc")]
    #[cfg_attr(feature = "serde", serde(rename = "EmssnAllwnc"))]
    pub emssn_allwnc: InternalisationData1,

    #[yaserde(rename = "OthrFinInstrms")]
    #[cfg_attr(feature = "serde", serde(rename = "OthrFinInstrms"))]
    pub othr_fin_instrms: InternalisationData1,
}

impl Validate for SettlementInternaliserFinancialInstrument1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct SettlementInternaliserIdentification1 {
    #[yaserde(rename = "LEI")]
    #[cfg_attr(feature = "serde", serde(rename = "LEI"))]
    pub lei: Leiidentifier,

    #[yaserde(rename = "RspnsblPrsn")]
    #[cfg_attr(feature = "serde", serde(rename = "RspnsblPrsn"))]
    pub rspnsbl_prsn: ContactDetails4,

    #[yaserde(rename = "Ctry")]
    #[cfg_attr(feature = "serde", serde(rename = "Ctry"))]
    pub ctry: CountryCode,

    #[yaserde(rename = "BrnchId")]
    #[cfg_attr(feature = "serde", serde(rename = "BrnchId"))]
    pub brnch_id: Exact2UpperCaseAlphaText,
}

impl Validate for SettlementInternaliserIdentification1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct SettlementInternaliserReportHeader1 {
    #[yaserde(rename = "CreDtTm")]
    #[cfg_attr(feature = "serde", serde(rename = "CreDtTm"))]
    pub cre_dt_tm: IsodateTime,

    #[yaserde(rename = "RptgDt")]
    #[cfg_attr(feature = "serde", serde(rename = "RptgDt"))]
    pub rptg_dt: Isodate,

    #[yaserde(rename = "Ccy")]
    #[cfg_attr(feature = "serde", serde(rename = "Ccy"))]
    pub ccy: ActiveCurrencyCode,

    #[yaserde(rename = "RptSts")]
    #[cfg_attr(feature = "serde", serde(rename = "RptSts"))]
    pub rpt_sts: TransactionOperationType4Code,
}

impl Validate for SettlementInternaliserReportHeader1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct SettlementInternaliserReportV01 {
    #[yaserde(rename = "RptHdr")]
    #[cfg_attr(feature = "serde", serde(rename = "RptHdr"))]
    pub rpt_hdr: SettlementInternaliserReportHeader1,

    #[yaserde(rename = "SttlmIntlr")]
    #[cfg_attr(feature = "serde", serde(rename = "SttlmIntlr"))]
    pub sttlm_intlr: SettlementInternaliser1,

    #[yaserde(rename = "IssrCSD")]
    #[cfg_attr(feature = "serde", serde(rename = "IssrCSD"))]
    pub issr_csd: Vec<IssuerCSDReport1>,

    #[yaserde(rename = "SplmtryData")]
    #[cfg_attr(feature = "serde", serde(rename = "SplmtryData"))]
    pub splmtry_data: Vec<SupplementaryData1>,
}

impl Validate for SettlementInternaliserReportV01 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct SettlementInternaliserTransactionType1 {
    #[yaserde(rename = "SctiesBuyOrSell")]
    #[cfg_attr(feature = "serde", serde(rename = "SctiesBuyOrSell"))]
    pub scties_buy_or_sell: InternalisationData1,

    #[yaserde(rename = "CollMgmtOpr")]
    #[cfg_attr(feature = "serde", serde(rename = "CollMgmtOpr"))]
    pub coll_mgmt_opr: InternalisationData1,

    #[yaserde(rename = "SctiesLndgOrBrrwg")]
    #[cfg_attr(feature = "serde", serde(rename = "SctiesLndgOrBrrwg"))]
    pub scties_lndg_or_brrwg: InternalisationData1,

    #[yaserde(rename = "RpAgrmt")]
    #[cfg_attr(feature = "serde", serde(rename = "RpAgrmt"))]
    pub rp_agrmt: InternalisationData1,

    #[yaserde(rename = "OthrTxs")]
    #[cfg_attr(feature = "serde", serde(rename = "OthrTxs"))]
    pub othr_txs: InternalisationData1,
}

impl Validate for SettlementInternaliserTransactionType1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct SupplementaryData1 {
    #[yaserde(rename = "PlcAndNm")]
    #[cfg_attr(feature = "serde", serde(rename = "PlcAndNm"))]
    pub plc_and_nm: Max350Text,

    #[yaserde(rename = "Envlp")]
    #[cfg_attr(feature = "serde", serde(rename = "Envlp"))]
    pub envlp: SupplementaryDataEnvelope1,
}

impl Validate for SupplementaryData1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Default, Clone, PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]
pub struct SupplementaryDataEnvelope1 {}

impl Validate for SupplementaryDataEnvelope1 {}


#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(PartialEq, Debug, Clone, YaSerialize, YaDeserialize)]#[yaserde(prefix = "n", default_namespace = "n", namespace = "n: urn:iso:std:iso:20022:tech:xsd:auth.072.001.01")]

pub enum TransactionOperationType4Code {
    #[yaserde(rename = "NEWT")]
    #[cfg_attr(feature = "serde", serde(rename = "NEWT"))]
    Newt,
    #[yaserde(rename = "AMND")]
    #[cfg_attr(feature = "serde", serde(rename = "AMND"))]
    Amnd,
    #[yaserde(rename = "CANC")]
    #[cfg_attr(feature = "serde", serde(rename = "CANC"))]
    Canc,
    __Unknown__(String),
}

impl Default for TransactionOperationType4Code {
    fn default() -> TransactionOperationType4Code {
        Self::__Unknown__("No valid variants".into())
    }
}

impl Validate for TransactionOperationType4Code {}

impl crate::MxMessage for Document {
    const BUSINESS_AREA: crate::BusinessArea = crate::BusinessArea::auth;
    const FUNCTIONALITY: &'static str = "072";
    const VARIANT: &'static str = "001";
    const VERSION: &'static str = "01";
    const MESSAGE_NAME: &'static str = "auth.072.001.01";
    const NAMESPACE: &'static str = "urn:iso:std:iso:20022:tech:xsd:auth.072.001.01";
}