-
Notifications
You must be signed in to change notification settings - Fork 0
/
cain.021.001.01.xsd.go
1783 lines (1477 loc) · 99.2 KB
/
cain.021.001.01.xsd.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by download. DO NOT EDIT.
package iso20022_cain_021_001_01
import (
"bytes"
"encoding/base64"
"encoding/xml"
"time"
)
type AccountDetails2 struct {
AcctNm Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AcctNm,omitempty"`
AcctTp Exact2AlphaNumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AcctTp,omitempty"`
AcctId Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AcctId,omitempty"`
}
type Action9 struct {
Dstn PartyType20Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Dstn,omitempty"`
ActnTp ActionType11Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ActnTp,omitempty"`
OthrActnTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrActnTp,omitempty"`
ActnInf Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ActnInf,omitempty"`
}
// May be one of FILE, MOBL, OTHN, OTHP, PECR, POFS
type ActionDestination1Code string
// May be one of ACTV, DEAC, DISP, FUPD, PRNT, SNDM
type ActionType10Code string
// May be one of CNTI, CNIS, CNTA, CNAS, CPTR, CHDV, VIPM, TRCK, TRXR, OTHN, OTHP, SIGN
type ActionType11Code string
// May be one of APPV, BLCK, CPTR, DCLN, RQID, NDCL, RFRL, OTHN, OTHP, STUA
type ActionType8Code string
type AdditionalAction1 struct {
Tp ActionType10Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp,omitempty"`
Dstn PartyType21Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Dstn,omitempty"`
OthrDstn Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrDstn,omitempty"`
DstnTp ActionDestination1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DstnTp,omitempty"`
OthrDstnTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrDstnTp,omitempty"`
DstnAdr Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DstnAdr,omitempty"`
Frmt OutputFormat4Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Frmt,omitempty"`
OthrFrmt Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrFrmt,omitempty"`
Cntt Content1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Cntt,omitempty"`
}
type AdditionalAmounts1 struct {
Tp TypeOfAmount12Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp"`
OthrTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrTp,omitempty"`
Amt Amount14 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Amt"`
Labl Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Labl,omitempty"`
}
type AdditionalData1 struct {
Tp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp,omitempty"`
Val Max2048Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Val,omitempty"`
}
type AdditionalFee1 struct {
Tp TypeOfAmount10Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp"`
OthrTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrTp,omitempty"`
FeePrgm Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 FeePrgm,omitempty"`
FeeDscrptr Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 FeeDscrptr,omitempty"`
Amt FeeAmount2 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Amt"`
Labl Max140Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Labl,omitempty"`
}
type AdditionalInformation20 struct {
Rcpt PartyType22Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Rcpt,omitempty"`
OthrRcpt Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrRcpt,omitempty"`
Trgt []UserInterface6Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Trgt,omitempty"`
OthrTrgt Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrTrgt,omitempty"`
Frmt OutputFormat4Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Frmt,omitempty"`
OthrFrmt Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrFrmt,omitempty"`
Tp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp,omitempty"`
Val Max20KText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Val"`
}
type AdditionalInformation22 struct {
Rcpt PartyType19Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Rcpt,omitempty"`
Trgt []UserInterface8Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Trgt,omitempty"`
Frmt OutputFormat4Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Frmt,omitempty"`
Tp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp,omitempty"`
Val Max20KText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Val"`
}
type AdditionalRiskData1 struct {
Tp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp"`
Val Max10KText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Val"`
}
type AdditionalService1 struct {
Tp AdditionalServiceType1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp"`
OthrTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrTp,omitempty"`
}
// May be one of CACT, CSHB, DCCV, INTP, INTT, LOYT, OTHN, OTHP, PRST
type AdditionalServiceType1Code string
type Address1 struct {
AdrLine1 Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AdrLine1,omitempty"`
AdrLine2 Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AdrLine2,omitempty"`
StrtNm Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 StrtNm,omitempty"`
BldgNb Max16Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 BldgNb,omitempty"`
PstlCd Max16Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PstlCd,omitempty"`
TwnNm Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 TwnNm,omitempty"`
CtrySubDvsnMnr Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CtrySubDvsnMnr,omitempty"`
CtrySubDvsnMjr Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CtrySubDvsnMjr,omitempty"`
Ctry Min2Max3AlphaText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ctry,omitempty"`
}
// May be one of HS25, HS38, HS51, HS01
type Algorithm11Code string
// May be one of EA2C, E3DC, DKP9, UKPT, UKA1, EA9C, EA5C
type Algorithm13Code string
// May be one of HS25, HS38, HS51, HS01, SH31, SH32, SH33, SH35, SHK1, SHK2
type Algorithm16Code string
// May be one of MACC, MCCS, CMA1, MCC1, CMA9, CMA5, CMA2, CM31, CM32, CM33, MCS3, CCA1, CCA2, CCA3
type Algorithm17Code string
// May be one of EA2C, E3DC, DKP9, UKPT, UKA1, EA9C, EA5C, DA12, DA19, DA25, N108, EA5R, EA9R, EA2R, E3DR, E36C, E36R, SD5C
type Algorithm18Code string
// May be one of ERS2, ERS1, RPSS, ECC5, ECC1, ECC4, ECC2, ECC3, ERS3, ECP2, ECP3, ECP5
type Algorithm19Code string
// May be one of HS25, HS38, HS51
type Algorithm20Code string
// May be one of EA2C, E3DC, EA9C, EA5C, EA2R, EA9R, EA5R, E3DR, E36C, E36R, SD5C
type Algorithm23Code string
// May be one of HS25, HS38, HS51
type Algorithm5Code string
// May be one of ERSA, RSAO
type Algorithm7Code string
// May be one of MGF1
type Algorithm8Code string
type AlgorithmIdentification12 struct {
Algo Algorithm8Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification18 struct {
Algo Algorithm8Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter9 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification19 struct {
Algo Algorithm7Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter10 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification20 struct {
Algo Algorithm19Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter11 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification21 struct {
Algo Algorithm16Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
}
type AlgorithmIdentification22 struct {
Algo Algorithm17Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter7 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification23 struct {
Algo Algorithm18Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter12 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification24 struct {
Algo Algorithm18Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter12 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification25 struct {
Algo Algorithm23Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter7 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification26 struct {
Algo Algorithm8Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Algorithm5Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification27 struct {
Algo Algorithm7Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter13 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type AlgorithmIdentification28 struct {
Algo Algorithm13Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
Param Parameter14 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Param,omitempty"`
}
type Amount14 struct {
Amt float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Amt"`
Ccy ISO3NumericCurrencyCode `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ccy,omitempty"`
Sgn bool `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Sgn,omitempty"`
}
type Amount4 struct {
Amt float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Amt"`
Ccy ISO3NumericCurrencyCode `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ccy,omitempty"`
XchgRate float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 XchgRate,omitempty"`
QtnDt ISODateTime `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 QtnDt,omitempty"`
}
type Amount5 struct {
Amt float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Amt"`
Sgn bool `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Sgn,omitempty"`
}
type ApprovalData1 struct {
ApprvlNtty ApprovalEntity1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ApprvlNtty,omitempty"`
ApprvlCd Exact6AlphaNumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ApprvlCd,omitempty"`
}
type ApprovalEntity1 struct {
Id Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id,omitempty"`
Tp PartyType26Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp"`
OthrTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrTp,omitempty"`
Assgnr PartyType9Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Assgnr,omitempty"`
Ctry Min2Max3AlphaText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ctry,omitempty"`
ShrtNm Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ShrtNm,omitempty"`
}
// May be one of CNAT, LATT, OATT, OUAT, CATT
type AttributeType1Code string
type AuthenticatedData5 struct {
Vrsn float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn,omitempty"`
Rcpt []Recipient6Choice `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Rcpt"`
MACAlgo AlgorithmIdentification22 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MACAlgo"`
NcpsltdCntt EncapsulatedContent3 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcpsltdCntt"`
MAC Max140Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MAC"`
}
// May be one of APKI, ADVF, ARNB, ARPC, ARQC, ATCC, BTHD, CHSA, CHDN, CUID, DRVI, DRLN, EMAL, EMIN, EMRN, IDCN, MANU, NVSC, FBIG, FBIO, OLDA, OLDS, OFPE, FCPN, OTPW, NBIG, NPIN, OCHI, OTHN, OTHP, PPSG, PSVE, PASN, PSWD, TOKP, PKIS, PLOB, PCDV, SCRT, SCNL, CSEC, SHAF, SHAT, CPSG, SSNB, TXIN, TOKA, CDHI, TOKN, QWAC, PHOM, PWOR, THDS, ADDB, ADDS, CSCV, CRYP, BIOM, MOBL, FPIN
type AuthenticationMethod11Code string
type BatchManagementInformation1 struct {
ColltnId Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ColltnId,omitempty"`
BtchId Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 BtchId"`
MsgSeqNb Max15NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MsgSeqNb,omitempty"`
MsgChcksmInptVal Max140Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MsgChcksmInptVal,omitempty"`
}
// May be one of LNGT, NUL8, NULG, NULL, RAND
type BytePadding1Code string
type Capabilities1 struct {
CardRdngCpblty []CardDataReading7Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardRdngCpblty,omitempty"`
OthrCardRdngCpblties []Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrCardRdngCpblties,omitempty"`
CardWrtgCpblties []CardDataWriting1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardWrtgCpblties,omitempty"`
OthrCardWrtgCpblties []Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrCardWrtgCpblties,omitempty"`
PINLngthCpblties float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PINLngthCpblties,omitempty"`
ApprvlCdLngth float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ApprvlCdLngth,omitempty"`
MxScrptLngth float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MxScrptLngth,omitempty"`
PINPadInprtv bool `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PINPadInprtv,omitempty"`
CardCaptrCpbl bool `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardCaptrCpbl,omitempty"`
OnLineCpblties OnLineCapability2Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OnLineCpblties,omitempty"`
MsgCpblties []DisplayCapabilities6 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MsgCpblties,omitempty"`
CrdhldrVrfctnCpblty []CardholderVerificationCapabilities1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CrdhldrVrfctnCpblty,omitempty"`
}
type CardData3 struct {
PAN Max19NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PAN,omitempty"`
PrtctdPANInd bool `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PrtctdPANInd,omitempty"`
CardSeqNb Min2Max3NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardSeqNb,omitempty"`
FctvDt Max10Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 FctvDt,omitempty"`
XpryDt Exact4NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 XpryDt,omitempty"`
PmtAcctRef Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PmtAcctRef,omitempty"`
PANRefIdr Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PANRefIdr,omitempty"`
PANAcctRg Max19NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PANAcctRg,omitempty"`
CardCtryCd ISO3NumericCountryCode `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardCtryCd,omitempty"`
CardPdctTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardPdctTp,omitempty"`
CardPdctSubTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardPdctSubTp,omitempty"`
CardPrtflIdr Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardPrtflIdr,omitempty"`
AddtlCardData Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AddtlCardData,omitempty"`
}
type CardData5 struct {
PAN Max19NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PAN,omitempty"`
PrtctdPANInd bool `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PrtctdPANInd,omitempty"`
CardSeqNb Min2Max3NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardSeqNb,omitempty"`
PmtAcctRef Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PmtAcctRef,omitempty"`
PANAcctRg Max19NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PANAcctRg,omitempty"`
CardPrtflIdr Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardPrtflIdr,omitempty"`
AddtlCardData Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AddtlCardData,omitempty"`
}
// May be one of CDFL, ICPY, MGST, ICCY, MICR, MLEY, OCRR, MSIP, OPTC, OTHN, RFID, UNSP, OTHP, KEEN
type CardDataReading7Code string
// May be one of ICPY, MGST, ICCY, MSIP, OTHN, UNSP, OTHP
type CardDataWriting1Code string
// May be one of OTHP, OTHN, ENVL, CHEC, CASH
type CardDepositType1Code string
type CardProgramme1 struct {
CardPrgrmmPropsd []CardProgrammeMode2 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardPrgrmmPropsd,omitempty"`
CardPrgrmmApld CardProgrammeMode1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CardPrgrmmApld,omitempty"`
}
type CardProgrammeMode1 struct {
Tp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp,omitempty"`
Id Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id"`
}
type CardProgrammeMode2 struct {
Tp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp,omitempty"`
Id []Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id"`
}
type Cardholder15 struct {
CrdhldrNm CardholderName1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CrdhldrNm,omitempty"`
Id []Credentials1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id,omitempty"`
Adr Address1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Adr,omitempty"`
CtctInf Contact1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CtctInf,omitempty"`
DtOfBirth ISODate `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DtOfBirth,omitempty"`
}
type CardholderName1 struct {
Nm Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Nm,omitempty"`
GvnNm Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 GvnNm,omitempty"`
MddlInitls Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MddlInitls,omitempty"`
LastNm Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 LastNm,omitempty"`
}
type CardholderVerificationCapabilities1 struct {
Cpblty CardholderVerificationCapability5Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Cpblty"`
OthrCpblty Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrCpblty,omitempty"`
}
// May be one of APKI, NOVF, FBIG, FBIO, FDSG, FCPN, FEPN, NBIO, NPIN, OTHN, OTHP, SIGN, UNSP, VORN, PKIS, NOPN, NOOP
type CardholderVerificationCapability5Code string
type CertificateIssuer1 struct {
RltvDstngshdNm []RelativeDistinguishedName1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 RltvDstngshdNm"`
}
type ClaimInformation1 struct {
ClmCrdntls Max500Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ClmCrdntls,omitempty"`
Assgnr Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Assgnr,omitempty"`
}
type CommunicationCharacteristics3 struct {
ComTp POICommunicationType2Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ComTp"`
RmotPty []PartyType7Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 RmotPty"`
Actv bool `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Actv"`
}
type Contact1 struct {
Nm Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Nm,omitempty"`
HomePhneNb PhoneNumber `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 HomePhneNb,omitempty"`
BizPhneNb PhoneNumber `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 BizPhneNb,omitempty"`
MobPhneNb PhoneNumber `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MobPhneNb,omitempty"`
OthrPhneNb PhoneNumber `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrPhneNb,omitempty"`
PrsnlEmailAdr Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PrsnlEmailAdr,omitempty"`
BizEmailAdr Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 BizEmailAdr,omitempty"`
OthrEmailAdr Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrEmailAdr,omitempty"`
Lang ISO2ALanguageCode `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Lang,omitempty"`
}
type Contact7 struct {
Nm Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Nm,omitempty"`
FaxNb PhoneNumber `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 FaxNb,omitempty"`
TelNb PhoneNumber `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 TelNb,omitempty"`
Email Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Email,omitempty"`
URLAdr Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 URLAdr,omitempty"`
}
type Content1 struct {
Val Max20KText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Val"`
Sgntr Max140Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Sgntr,omitempty"`
CertId Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CertId,omitempty"`
}
type ContentInformationType19 struct {
CnttTp ContentType2Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CnttTp"`
EnvlpdData EnvelopedData5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 EnvlpdData,omitempty"`
AuthntcdData AuthenticatedData5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AuthntcdData,omitempty"`
SgndData SignedData5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 SgndData,omitempty"`
DgstdData DigestedData5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DgstdData,omitempty"`
}
type ContentInformationType20 struct {
MACData MACData1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MACData"`
MAC Max8HexBinaryText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MAC"`
}
// May be one of DATA, SIGN, EVLP, DGST, AUTH
type ContentType2Code string
// May be one of EVLP, IFSE
type ContentType3Code string
type Context3 struct {
PtOfSvcCntxt PointOfServiceContext1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PtOfSvcCntxt,omitempty"`
TxCntxt TransactionContext1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 TxCntxt"`
Vrfctn []Verification2 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrfctn,omitempty"`
RskCntxt RiskContext1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 RskCntxt,omitempty"`
SaleCntxt SaleContext7 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 SaleCntxt,omitempty"`
}
type Context4 struct {
PtOfSvcCntxt PointOfServiceContext2 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PtOfSvcCntxt,omitempty"`
TxCntxt TransactionContext3 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 TxCntxt"`
SaleCntxt SaleContext7 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 SaleCntxt,omitempty"`
}
type Credentials1 struct {
IdCd Identification2Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 IdCd"`
OthrIdCd Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrIdCd,omitempty"`
IdVal Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 IdVal"`
}
type CryptographicKey13 struct {
Id Max140Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id"`
AddtlId Max35Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AddtlId,omitempty"`
Vrsn Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn"`
Tp CryptographicKeyType3Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp,omitempty"`
Fctn []KeyUsage1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Fctn,omitempty"`
ActvtnDt ISODateTime `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ActvtnDt,omitempty"`
DeactvtnDt ISODateTime `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DeactvtnDt,omitempty"`
KeyVal ContentInformationType19 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyVal,omitempty"`
KeyChckVal Max35Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyChckVal,omitempty"`
AddtlMgmtInf []GenericInformation1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AddtlMgmtInf,omitempty"`
}
// May be one of AES2, EDE3, DKP9, AES9, AES5, EDE4
type CryptographicKeyType3Code string
type Customer3 struct {
CstmrId Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CstmrId,omitempty"`
Nm Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Nm,omitempty"`
Adr Address1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Adr,omitempty"`
Crdntls []Credentials1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Crdntls,omitempty"`
AddtlInf Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AddtlInf,omitempty"`
DtOfBirth ISODate `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DtOfBirth,omitempty"`
}
type CustomerDevice2 struct {
Dvc Device1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Dvc,omitempty"`
Id Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id,omitempty"`
Prvdr Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Prvdr,omitempty"`
}
// May be one of MOBL, OTHN, OTHP, PECR, TBLT, NSCR, SECR
type CustomerDeviceType1Code string
type DeliveryInformation2 struct {
Ctct Contact7 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ctct,omitempty"`
PstlAdr Address1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PstlAdr,omitempty"`
}
type DepositDetails1 struct {
Tp CardDepositType1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp"`
OthrTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrTp,omitempty"`
Amt Amount5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Amt,omitempty"`
}
// May be one of CSHB, DONN, DCCF, EXTR, FORX, GRTY, OTHN, OTHP, SRCH, TAXT
type DetailAmount1Code string
type DetailedAmount19 struct {
Tp DetailAmount1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp"`
OthrTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrTp,omitempty"`
Amt Amount5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Amt"`
CrdhldrBllgAmt Amount5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CrdhldrBllgAmt,omitempty"`
RcncltnAmt Amount5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 RcncltnAmt,omitempty"`
Labl Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Labl,omitempty"`
}
type Device1 struct {
Tp CustomerDeviceType1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp"`
OthrTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrTp,omitempty"`
Lang string `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Lang,omitempty"`
PhneNb PhoneNumber `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PhneNb,omitempty"`
Lctn GeographicCoordinates1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Lctn,omitempty"`
IPAdr Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 IPAdr,omitempty"`
Email Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Email,omitempty"`
}
type DigestedData5 struct {
Vrsn float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn,omitempty"`
DgstAlgo AlgorithmIdentification21 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DgstAlgo"`
NcpsltdCntt EncapsulatedContent3 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcpsltdCntt"`
Dgst Max140Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Dgst"`
}
type DisplayCapabilities6 struct {
Dstn UserInterface1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Dstn"`
AvlblFrmt []OutputFormat1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AvlblFrmt,omitempty"`
NbOfLines float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NbOfLines,omitempty"`
LineWidth float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 LineWidth,omitempty"`
AvlblLang []string `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AvlblLang,omitempty"`
}
type DisputeData1 struct {
PresntmntCycl Exact1NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PresntmntCycl,omitempty"`
DsptCond Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DsptCond,omitempty"`
DsptSts Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DsptSts,omitempty"`
PrtlDspt bool `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PrtlDspt,omitempty"`
DsptRef []DisputeReference1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DsptRef,omitempty"`
DcmnttnSts Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DcmnttnSts,omitempty"`
AddtlDsptData Max1000Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AddtlDsptData,omitempty"`
DsptRjctRsn []Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DsptRjctRsn,omitempty"`
ChrgbckElgblty Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ChrgbckElgblty,omitempty"`
}
type DisputeIdentification1 struct {
Tp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp,omitempty"`
Id Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id"`
}
type DisputeReference1 struct {
AssgnrNtty PartyType32Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AssgnrNtty,omitempty"`
OthrAssgnrNtty Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrAssgnrNtty,omitempty"`
DsptId []DisputeIdentification1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DsptId"`
}
type Document struct {
RtrvlInitn RetrievalInitiationV01 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 RtrvlInitn"`
}
type ECommerceData1 struct {
Tp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp"`
Val Max2048Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Val"`
}
type EncapsulatedContent3 struct {
CnttTp ContentType2Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CnttTp"`
Cntt Max100KBinary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Cntt,omitempty"`
}
type EncryptedContent4 struct {
CnttTp ContentType2Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CnttTp"`
CnttNcrptnAlgo AlgorithmIdentification24 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CnttNcrptnAlgo,omitempty"`
NcrptdData Max100KBinary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdData"`
}
type EncryptedContent5 struct {
CnttTp ContentType2Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CnttTp"`
CnttNcrptnAlgo AlgorithmIdentification25 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CnttNcrptnAlgo"`
NcrptdDataElmt []EncryptedDataElement1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdDataElmt"`
}
type EncryptedData1 struct {
Ctrl Exact1HexBinaryText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ctrl,omitempty"`
KeySetIdr Max8NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeySetIdr,omitempty"`
DrvdInf Max32HexBinaryText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DrvdInf,omitempty"`
Algo Max2NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo,omitempty"`
KeyLngth Max4NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyLngth,omitempty"`
KeyPrtcn Max2NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyPrtcn,omitempty"`
KeyIndx Max5NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyIndx,omitempty"`
PddgMtd Max2NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PddgMtd,omitempty"`
NcrptdDataFrmt Max2NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdDataFrmt,omitempty"`
NcrptdDataElmt []EncryptedDataElement1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdDataElmt"`
}
type EncryptedData1Choice struct {
BinryData Max100KBinary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 BinryData,omitempty"`
HexBinryVal string `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 HexBinryVal,omitempty"`
}
type EncryptedDataElement1 struct {
Id ExternalEncryptedElementIdentification1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id,omitempty"`
OthrId Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrId,omitempty"`
NcrptdData EncryptedData1Choice `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdData"`
ClearTxtDataFrmt EncryptedDataFormat1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ClearTxtDataFrmt,omitempty"`
OthrClearTxtDataFrmt Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrClearTxtDataFrmt,omitempty"`
}
// May be one of ASCI, BINF, EBCD, HEXF, OTHN, OTHP
type EncryptedDataFormat1Code string
// May be one of TR31, TR34, I238
type EncryptionFormat2Code string
// May be one of TR34, TR31, CTCE, CBCE
type EncryptionFormat3Code string
type EnvelopedData5 struct {
Vrsn float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn,omitempty"`
OrgtrInf OriginatorInformation1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OrgtrInf,omitempty"`
Rcpt []Recipient6Choice `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Rcpt"`
NcrptdCntt EncryptedContent4 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdCntt,omitempty"`
}
type EnvelopedData6 struct {
Vrsn float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn,omitempty"`
Rcpt []Recipient7Choice `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Rcpt"`
NcrptdCntt EncryptedContent5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdCntt,omitempty"`
}
type Environment13 struct {
Acqrr PartyIdentification197 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Acqrr"`
Sndr PartyIdentification197 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Sndr,omitempty"`
Rcvr PartyIdentification197 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Rcvr,omitempty"`
Accptr PartyIdentification203 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Accptr,omitempty"`
Pyer PartyIdentification211 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Pyer,omitempty"`
Pyee PartyIdentification211 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Pyee,omitempty"`
Termnl Terminal2 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Termnl,omitempty"`
Card CardData5 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Card"`
Wllt Wallet1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Wllt,omitempty"`
Tkn Token1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tkn,omitempty"`
}
type Environment6 struct {
Acqrr PartyIdentification198 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Acqrr,omitempty"`
Sndr PartyIdentification198 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Sndr,omitempty"`
Rcvr PartyIdentification198 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Rcvr,omitempty"`
Accptr PartyIdentification199 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Accptr,omitempty"`
Pyer PartyIdentification211 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Pyer,omitempty"`
Pyee PartyIdentification211 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Pyee,omitempty"`
Termnl Terminal3 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Termnl,omitempty"`
Card CardData3 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Card"`
CstmrDvc CustomerDevice2 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CstmrDvc,omitempty"`
Wllt Wallet1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Wllt,omitempty"`
Tkn Token1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tkn,omitempty"`
Crdhldr Cardholder15 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Crdhldr,omitempty"`
}
// Must match the pattern ([0-9A-F][0-9A-F]){1}
type Exact1HexBinaryText string
// Must match the pattern [0-9]
type Exact1NumericText string
// Must match the pattern [a-zA-Z0-9]{2}
type Exact2AlphaNumericText string
// Must match the pattern [0-9]{2}
type Exact2NumericText string
// Must match the pattern [0-9]{4}
type Exact4NumericText string
// Must match the pattern [a-zA-Z0-9\s]{6}
type Exact6AlphaNumericText string
// Must match the pattern ([0-9A-F][0-9A-F]){1,3}
type ExternalEncryptedElementIdentification1Code string
type FeeAmount2 struct {
Amt float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Amt"`
Ccy ISO3NumericCurrencyCode `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ccy,omitempty"`
XchgRate float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 XchgRate,omitempty"`
QtnDt ISODateTime `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 QtnDt,omitempty"`
Sgn bool `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Sgn,omitempty"`
}
type FinancialInstitution4 struct {
Id Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id,omitempty"`
Nm Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Nm,omitempty"`
Adr Address1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Adr,omitempty"`
Email Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Email,omitempty"`
URLAdr Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 URLAdr,omitempty"`
PhneNb Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PhneNb,omitempty"`
CstmrSvc Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CstmrSvc,omitempty"`
AddtlCtctInf Max256Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 AddtlCtctInf,omitempty"`
}
type FundingService1 struct {
FndgSvc TransferService1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 FndgSvc,omitempty"`
FndgSrc FundingSource2 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 FndgSrc,omitempty"`
ClmInf ClaimInformation1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ClmInf,omitempty"`
}
type FundingSource2 struct {
SrcTp FundingSourceType2Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 SrcTp,omitempty"`
OthrSrcTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrSrcTp,omitempty"`
Ref Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ref,omitempty"`
}
// May be one of LOYL, OTHN, OTHP, SVNG, UVRL, CASH, CRDT, CDBT, EPRS, DBAC, CURR, CHQE, PRPD, LCDT
type FundingSourceType2Code string
type GenericIdentification172 struct {
Id Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id"`
Tp PartyType17Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tp,omitempty"`
OthrTp Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 OthrTp,omitempty"`
Assgnr PartyType18Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Assgnr,omitempty"`
Ctry Min2Max3AlphaText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ctry,omitempty"`
ShrtNm Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ShrtNm,omitempty"`
}
type GenericIdentification48 struct {
Id Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id"`
Vrsn Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn"`
Issr Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Issr"`
}
type GenericInformation1 struct {
Nm Max70Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Nm"`
Val Max140Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Val,omitempty"`
}
type GeographicCoordinates1 struct {
Lat Max16Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Lat"`
Long Max16Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Long"`
}
// May be one of ELEC, PHYS, ELPH
type GoodsAndServices1Code string
// May be one of CRCU, FORX, OTHN, OTHP, SECS
type GoodsAndServicesSubType1Code string
type Header55 struct {
MsgFctn MessageFunction37Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 MsgFctn"`
PrtcolVrsn Max2048Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PrtcolVrsn"`
XchgId Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 XchgId,omitempty"`
ReTrnsmssnCntr Max3NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 ReTrnsmssnCntr,omitempty"`
CreDtTm ISODateTime `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 CreDtTm"`
BtchMgmtInf BatchManagementInformation1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 BtchMgmtInf,omitempty"`
InitgPty GenericIdentification172 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 InitgPty"`
RcptPty GenericIdentification172 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 RcptPty,omitempty"`
TracData []AdditionalData1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 TracData,omitempty"`
Tracblt []Traceability7 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Tracblt,omitempty"`
}
// Must match the pattern [a-z]{2,2}
type ISO2ALanguageCode string
// Must match the pattern [0-9]{3,3}
type ISO3NumericCountryCode string
// Must match the pattern [0-9]{3,3}
type ISO3NumericCurrencyCode string
type ISODate time.Time
func (t *ISODate) UnmarshalText(text []byte) error {
return (*xsdDate)(t).UnmarshalText(text)
}
func (t ISODate) MarshalText() ([]byte, error) {
return xsdDate(t).MarshalText()
}
type ISODateTime time.Time
func (t *ISODateTime) UnmarshalText(text []byte) error {
return (*xsdDateTime)(t).UnmarshalText(text)
}
func (t ISODateTime) MarshalText() ([]byte, error) {
return xsdDateTime(t).MarshalText()
}
type ISOTime time.Time
func (t *ISOTime) UnmarshalText(text []byte) error {
return (*xsdTime)(t).UnmarshalText(text)
}
func (t ISOTime) MarshalText() ([]byte, error) {
return xsdTime(t).MarshalText()
}
// May be one of DRID, NTID, PASS, SSYN, ARNB, OTHP, OTHN, EMAL, PHNB
type Identification2Code string
type IssuerAndSerialNumber1 struct {
Issr CertificateIssuer1 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Issr"`
SrlNb Max35Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 SrlNb"`
}
type KEK5 struct {
Vrsn float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn,omitempty"`
KEKId KEKIdentifier2 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KEKId"`
KeyNcrptnAlgo AlgorithmIdentification23 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyNcrptnAlgo"`
NcrptdKey Max500Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdKey"`
}
type KEK6 struct {
Vrsn float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn,omitempty"`
KEKId KEKIdentifier6 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KEKId"`
KeyNcrptnAlgo AlgorithmIdentification28 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyNcrptnAlgo"`
NcrptdKey Max500Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdKey,omitempty"`
}
type KEKIdentifier2 struct {
KeyId Max140Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyId"`
KeyVrsn Max140Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyVrsn"`
SeqNb float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 SeqNb,omitempty"`
DerivtnId Min5Max16Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DerivtnId,omitempty"`
}
type KEKIdentifier6 struct {
KeyId Max140Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyId"`
KeyVrsn Max140Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyVrsn,omitempty"`
SeqNb float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 SeqNb,omitempty"`
DerivtnId Min5Max16Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DerivtnId,omitempty"`
}
type KeyTransport5 struct {
Vrsn float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn,omitempty"`
RcptId Recipient5Choice `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 RcptId"`
KeyNcrptnAlgo AlgorithmIdentification19 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyNcrptnAlgo"`
NcrptdKey Max5000Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdKey"`
}
type KeyTransport6 struct {
Vrsn float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Vrsn,omitempty"`
RcptId Recipient5Choice `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 RcptId"`
KeyNcrptnAlgo AlgorithmIdentification27 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyNcrptnAlgo"`
NcrptdKey Max5000Binary `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 NcrptdKey"`
}
// May be one of ENCR, DCPT, DENC, DDEC, TRNI, TRNX, MACG, MACV, SIGG, SUGV, PINE, PIND, PINV, KEYG, KEYI, KEYX, KEYD
type KeyUsage1Code string
type MACData1 struct {
Ctrl Exact1HexBinaryText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Ctrl"`
KeySetIdr Max8NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeySetIdr"`
DrvdInf Max32HexBinaryText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 DrvdInf,omitempty"`
Algo Max2NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Algo"`
KeyLngth Max4NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyLngth,omitempty"`
KeyPrtcn Max2NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyPrtcn,omitempty"`
KeyIndx Max5NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 KeyIndx,omitempty"`
PddgMtd Max2NumericText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 PddgMtd,omitempty"`
InitlstnVctr Max32HexBinaryText `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 InitlstnVctr,omitempty"`
}
// May be no more than 1000 items long
type Max1000Text string
type Max100KBinary []byte
func (t *Max100KBinary) UnmarshalText(text []byte) error {
return (*xsdBase64Binary)(t).UnmarshalText(text)
}
func (t Max100KBinary) MarshalText() ([]byte, error) {
return xsdBase64Binary(t).MarshalText()
}
// May be no more than 10000 items long
type Max10KText string
// May be no more than 10 items long
type Max10Text string
// Must match the pattern [0-9]{1,11}
type Max11NumericText string
// Must match the pattern [0-9]{1,12}
type Max12NumericText string
type Max140Binary []byte
func (t *Max140Binary) UnmarshalText(text []byte) error {
return (*xsdBase64Binary)(t).UnmarshalText(text)
}
func (t Max140Binary) MarshalText() ([]byte, error) {
return xsdBase64Binary(t).MarshalText()
}
// May be no more than 140 items long
type Max140Text string
// Must match the pattern [0-9]{1,15}
type Max15NumericText string
// May be no more than 16 items long
type Max16Text string
// Must match the pattern [0-9]{1,19}
type Max19NumericText string
// May be no more than 2048 items long
type Max2048Text string
// May be no more than 20000 items long
type Max20KText string
// Must match the pattern [0-9]{1,23}
type Max23NumericText string
// May be no more than 256 items long
type Max256Text string
// Must match the pattern [0-9]{1,2}
type Max2NumericText string
type Max3000Binary []byte
func (t *Max3000Binary) UnmarshalText(text []byte) error {
return (*xsdBase64Binary)(t).UnmarshalText(text)
}
func (t Max3000Binary) MarshalText() ([]byte, error) {
return xsdBase64Binary(t).MarshalText()
}
// Must match the pattern ([0-9A-F][0-9A-F]){1,32}
type Max32HexBinaryText string
// May be no more than 350 items long
type Max350Text string
type Max35Binary []byte
func (t *Max35Binary) UnmarshalText(text []byte) error {
return (*xsdBase64Binary)(t).UnmarshalText(text)
}
func (t Max35Binary) MarshalText() ([]byte, error) {
return xsdBase64Binary(t).MarshalText()
}
// Must match the pattern [0-9]{1,35}
type Max35NumericText string
// May be no more than 35 items long
type Max35Text string
// Must match the pattern [0-9]{1,3}
type Max3NumericText string
// Must match the pattern [0-9]{1,4}
type Max4NumericText string
type Max5000Binary []byte
func (t *Max5000Binary) UnmarshalText(text []byte) error {
return (*xsdBase64Binary)(t).UnmarshalText(text)
}
func (t Max5000Binary) MarshalText() ([]byte, error) {
return xsdBase64Binary(t).MarshalText()
}
type Max500Binary []byte
func (t *Max500Binary) UnmarshalText(text []byte) error {
return (*xsdBase64Binary)(t).UnmarshalText(text)
}
func (t Max500Binary) MarshalText() ([]byte, error) {
return xsdBase64Binary(t).MarshalText()
}
// May be no more than 500 items long
type Max500Text string
// Must match the pattern [0-9]{1,5}
type Max5NumericText string
// Must match the pattern [0-9]{1,6}
type Max6NumericText string
// May be no more than 70 items long
type Max70Text string
// Must match the pattern ([0-9A-F][0-9A-F]){1,8}
type Max8HexBinaryText string
// Must match the pattern [0-9]{1,8}
type Max8NumericText string
// May be no more than 99 items long
type Max99Text string
type MemoryCharacteristics1 struct {
Id Max35Text `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Id"`
TtlSz float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 TtlSz"`
FreeSz float64 `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 FreeSz"`
Unit MemoryUnit1Code `xml:"urn:iso:std:iso:20022:tech:xsd:cain.021.001.01 Unit"`
}
// May be one of BYTE, EXAB, GIGA, KILO, MEGA, PETA, TERA
type MemoryUnit1Code string
// May be one of ADVC, NOTI, REQU, STNO, STRQ, STAD
type MessageFunction37Code string
// Must match the pattern [a-zA-Z]{2,3}
type Min2Max3AlphaText string
// Must match the pattern [0-9]{2,3}
type Min2Max3NumericText string
type Min5Max16Binary []byte
func (t *Min5Max16Binary) UnmarshalText(text []byte) error {
return (*xsdBase64Binary)(t).UnmarshalText(text)
}
func (t Min5Max16Binary) MarshalText() ([]byte, error) {
return xsdBase64Binary(t).MarshalText()
}
// May be one of OFLN, ONLN, BOTH