-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathparsing_notification_codes.py
More file actions
352 lines (344 loc) · 20.3 KB
/
parsing_notification_codes.py
File metadata and controls
352 lines (344 loc) · 20.3 KB
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
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from __future__ import annotations
import json
from enum import Enum
from typing_extensions import Self
class ParsingNotificationCodes(int, Enum):
"""
The enumeration contains possible values of notification codes returned during the RFID chip processing.
"""
"""
allowed enum values
"""
ntfLDS_ASN_Certificate_IncorrectVersion = 2415919105
ntfLDS_ASN_Certificate_NonMatchingSignatureAlgorithm = 2415919106
ntfLDS_ASN_Certificate_IncorrectTimeCoding = 2415919107
ntfLDS_ASN_Certificate_IncorrectUseOfGeneralizedTime = 2415919108
ntfLDS_ASN_Certificate_EmptyIssuer = 2415919109
ntfLDS_ASN_Certificate_EmptySubject = 2415919110
ntfLDS_ASN_Certificate_UnsupportedCriticalExtension = 2415919112
ntfLDS_ASN_Certificate_ForcedDefaultCSCARole = 2415919118
ntfLDS_ASN_Certificate_ForcedDefaultDSRole = 2415919119
ntfLDS_ASN_Certificate_IncorrectIssuerSubjectDS = 2415919120
ntfLDS_ASN_Certificate_DuplicatingExtensions = 2415919127
ntfLDS_ICAO_Certificate_Version_Missed = 2415919616
ntfLDS_ICAO_Certificate_Version_Incorrect = 2415919617
ntfLDS_ICAO_Certificate_Issuer_Country_Missed = 2415919618
ntfLDS_ICAO_Certificate_Issuer_CommonName_Missed = 2415919619
ntfLDS_ICAO_Certificate_Issuer_CountryNonCompliant = 2415919620
ntfLDS_ICAO_Certificate_Subject_Country_Missed = 2415919621
ntfLDS_ICAO_Certificate_Subject_CommonName_Missed = 2415919622
ntfLDS_ICAO_Certificate_Subject_CountryNonCompliant = 2415919623
ntfLDS_ICAO_Certificate_UsingNonCompliantData = 2415919624
ntfLDS_ICAO_Certificate_UnsupportedSignatureAlgorithm = 2415919625
ntfLDS_ICAO_Certificate_UnsupportedPublicKeyAlgorithm = 2415919626
ntfLDS_ICAO_Certificate_MissedExtensions = 2415919627
ntfLDS_ICAO_Certificate_Validity = 2415919628
ntfLDS_ICAO_Certificate_Ext_UsingNonCompliantData = 2415919629
ntfLDS_ICAO_Certificate_Ext_KeyUsage_Missed = 2415919630
ntfLDS_ICAO_Certificate_Ext_KeyUsage_NotCritical = 2415919631
ntfLDS_ICAO_Certificate_Ext_KeyUsage_IncorrectData = 2415919632
ntfLDS_ICAO_Certificate_Ext_BasicC_Missed = 2415919633
ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectUsage1 = 2415919634
ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectUsage2 = 2415919635
ntfLDS_ICAO_Certificate_Ext_BasicC_NotCritical = 2415919636
ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectData = 2415919637
ntfLDS_ICAO_Certificate_Ext_BasicC_PathLenC_Missed = 2415919638
ntfLDS_ICAO_Certificate_Ext_BasicC_PathLenC_Incorrect = 2415919639
ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_NotCritical = 2415919640
ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_IncorrectUsage = 2415919641
ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_IncorrectData = 2415919642
ntfLDS_ICAO_Certificate_Ext_AuthKeyID_Missed = 2415919643
ntfLDS_ICAO_Certificate_Ext_AuthKeyID_IncorrectData = 2415919644
ntfLDS_ICAO_Certificate_Ext_AuthKeyID_KeyID_Missed = 2415919645
ntfLDS_ICAO_Certificate_Ext_SubjectKeyID_Missed = 2415919646
ntfLDS_ICAO_Certificate_Ext_SubjectKeyID_IncorrectData = 2415919647
ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_Missed = 2415919648
ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_IncorrectData = 2415919649
ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_Empty = 2415919650
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Missed = 2415919651
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_IncorrectData = 2415919652
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Empty = 2415919653
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_NonCompliant = 2415919654
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Critical = 2415919656
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_Empty = 2415919657
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_Incorrect = 2415919658
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_NonCompliant = 2415919659
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Missed = 2415919660
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_IncorrectData = 2415919661
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Empty = 2415919662
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_NonCompliant = 2415919663
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Critical = 2415919665
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_Empty = 2415919666
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_Incorrect = 2415919667
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_NonCompliant = 2415919668
ntfLDS_ICAO_Certificate_Ext_DocTypeList_Missed = 2415919669
ntfLDS_ICAO_Certificate_Ext_DocTypeList_IncorrectData = 2415919670
ntfLDS_ICAO_Certificate_Ext_DocTypeList_Version = 2415919671
ntfLDS_ICAO_Certificate_Ext_DocTypeList_DocTypes = 2415919672
ntfLDS_ICAO_Certificate_Ext_DocTypeList_DocTypes_Empty = 2415919673
ntfLDS_ICAO_Certificate_Ext_CertPolicies_IncorrectData = 2415919674
ntfLDS_ICAO_Certificate_Ext_CertPolicies_Empty = 2415919675
ntfLDS_ICAO_Certificate_Ext_CertPolicies_PolicyID_Missed = 2415919676
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_Missed = 2415919677
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_IncorrectData = 2415919678
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_Empty = 2415919679
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_PointMissed = 2415919680
ntfLDS_ICAO_Certificate_SN_NonCompliant = 2415919681
ntfLDS_ICAO_Certificate_Issuer_SN_NonCompliant = 2415919682
ntfLDS_ICAO_Certificate_Subject_SN_NonCompliant = 2415919683
ntfLDS_ICAO_Certificate_Issuer_AttributeNonCompliant = 2415919684
ntfLDS_ICAO_Certificate_Subject_AttributeNonCompliant = 2415919685
ntfLDS_ICAO_Certificate_IssuerSubject_Country_NonMatching = 2415919686
ntfLDS_ICAO_Certificate_Ext_CSCA_AltNames_NonMatching = 2415919687
ntfLDS_ICAO_Certificate_Ext_NameChange_IncorrectData = 2415919688
ntfLDS_ICAO_Certificate_Ext_NameChange_NonCompliant = 2415919689
ntfLDS_ICAO_Certificate_Ext_NameChange_Critical = 2415919690
ntfLDS_ICAO_Certificate_Ext_DocTypeList_NonCompliant = 2415919691
ntfLDS_ICAO_Certificate_Ext_DocTypeList_Critical = 2415919692
ntfLDS_ICAO_Certificate_Ext_Optional_Critical = 2415919693
ntfLDS_ICAO_Certificate_Subject_NonCompliant = 2415919694
ntfLDS_ICAO_Certificate_Subject_CommonNameNonCompliant = 2415919695
ntfLDS_ICAO_Certificate_Chain_Country_NonMatching = 2415919696
ntfLDS_ICAO_Certificate_VisualMrz_Country_NonMatching = 2415919697
ntfLDS_ICAO_Certificate_MRZ_Country_NonMatching = 2415919698
ntfLDS_ICAO_Certificate_Issuer_CountryNonUpperCase = 2415919699
ntfLDS_ICAO_Certificate_Subject_CountryNonUpperCase = 2415919700
ntfLDS_ICAO_COM_LDS_Version_Incorrect = 2415919136
ntfLDS_ICAO_COM_LDS_Version_Missing = 2415919137
ntfLDS_ICAO_COM_Unicode_Version_Incorrect = 2415919138
ntfLDS_ICAO_COM_Unicode_Version_Missing = 2415919139
ntfLDS_ICAO_COM_DGPM_Incorrect = 2415919140
ntfLDS_ICAO_COM_DGPM_Missing = 2415919141
ntfLDS_ICAO_COM_DGPM_Unexpected = 2415919142
ntfLDS_ICAO_Application_LDSVersion_Unsupported = 2415919152
ntfLDS_ICAO_Application_UnicodeVersion_Unsupported = 2415919153
ntfLDS_ICAO_Application_LDSVersion_Inconsistent = 2415919154
ntfLDS_ICAO_Application_UnicodeVersion_Inconsistent = 2415919155
ntfLDS_ASN_SignedData_OID_Incorrect = 2415919360
ntfLDS_ASN_SignedData_Version_Incorrect = 2415919520
ntfLDS_ASN_SignedData_ContentOID_Incorrect = 2415919521
ntfLDS_ICAO_SignedData_Version_Incorrect = 2415919361
ntfLDS_ICAO_SignedData_DigestAlgorithms_Empty = 2415919362
ntfLDS_ICAO_SignedData_DigestAlgorithms_Unsupported = 2415919363
ntfLDS_ICAO_SignedData_SignerInfos_MultipleEntries = 2415919369
ntfLDS_ICAO_SignedData_Certificates_Missed = 2415919536
ntfLDS_ICAO_SignedData_Certificates_Empty = 2415919537
ntfLDS_ICAO_SignedData_CRLs_IncorrectUsage = 2415919538
ntfLDS_ICAO_LDSObject_IncorrectContentOID = 2415919364
ntfLDS_ICAO_LDSObject_DGNumber_Incorrect = 2415919365
ntfLDS_ICAO_LDSObject_DGHash_Missing = 2415919366
ntfLDS_ICAO_LDSObject_DGHash_Extra = 2415919367
ntfLDS_ICAO_LDSObject_Version_Incorrect = 2415919368
ntfLDS_ICAO_MasterList_Version_Incorrect = 2415919552
ntfLDS_ICAO_DeviationList_Version_Incorrect = 2415919560
ntfLDS_BSI_DefectList_Version_Incorrect = 2415919568
ntfLDS_BSI_BlackList_Version_Incorrect = 2415919576
ntfLDS_ASN_SignerInfo_Version_Incorrect = 2415919370
ntfLDS_ASN_SignerInfo_SID_IncorrectChoice = 2415919371
ntfLDS_ASN_SignerInfo_SID_DigestAlgorithmNotListed = 2415919372
ntfLDS_ASN_SignerInfo_MessageDigestAttr_Missing = 2415919373
ntfLDS_ASN_SignerInfo_MessageDigestAttr_Data = 2415919374
ntfLDS_ASN_SignerInfo_MessageDigestAttr_Value = 2415919375
ntfLDS_ASN_SignerInfo_ContentTypeAttr_Missing = 2415919376
ntfLDS_ASN_SignerInfo_ContentTypeAttr_Data = 2415919377
ntfLDS_ASN_SignerInfo_ContentTypeAttr_Value = 2415919378
ntfLDS_ASN_SignerInfo_SigningTimeAttr_Missing = 2415919387
ntfLDS_ASN_SignerInfo_SigningTimeAttr_Data = 2415919388
ntfLDS_ASN_SignerInfo_SigningTimeAttr_Value = 2415919389
ntfLDS_ASN_SignerInfo_ListContentDescriptionAttr_Missing = 2415919390
ntfLDS_ASN_SignerInfo_ListContentDescriptionAttr_Data = 2415919391
ntfLDS_Auth_SignerInfo_Certificate_Validity = 2415919381
ntfLDS_Auth_SignerInfo_Certificate_RootIsNotTrusted = 2415919382
ntfLDS_Auth_SignerInfo_Certificate_CantFindCSCA = 2415919383
ntfLDS_Auth_SignerInfo_Certificate_Revoked = 2415919384
ntfLDS_Auth_SignerInfo_Certificate_SignatureInvalid = 2415919385
ntfLDS_UnsupportedImageFormat = 2415919386
ntfLDS_MRZ_DocumentType_Unknown = 139272
ntfLDS_MRZ_IssuingState_SyntaxError = 139273
ntfLDS_MRZ_Name_IsVoid = 139274
ntfLDS_MRZ_Number_IncorrectChecksum = 139277
ntfLDS_MRZ_Nationality_SyntaxError = 139278
ntfLDS_MRZ_DOB_SyntaxError = 139279
ntfLDS_MRZ_DOB_Error = 139280
ntfLDS_MRZ_DOB_IncorrectChecksum = 139281
ntfLDS_MRZ_Sex_Incorrect = 139282
ntfLDS_MRZ_DOE_SyntaxError = 139283
ntfLDS_MRZ_DOE_Error = 139284
ntfLDS_MRZ_DOE_IncorrectChecksum = 139285
ntfLDS_MRZ_OptionalData_IncorrectChecksum = 139286
ntfLDS_MRZ_IncorrectChecksum = 139287
ntfLDS_MRZ_Incorrect = 139288
ntfLDS_MRZ_CountryCode_VisualMrz_NonMatching = 139289
ntfLDS_Biometrics_FormatOwner_Missing = 2415984640
ntfLDS_Biometrics_FormatOwner_Incorrect = 2416050176
ntfLDS_Biometrics_FormatType_Missing = 2416115712
ntfLDS_Biometrics_FormatType_Incorrect = 2416181248
ntfLDS_Biometrics_Type_Incorrect = 2416246784
ntfLDS_Biometrics_SubType_Missing = 2416312320
ntfLDS_Biometrics_SubType_Incorrect = 2416377856
ntfLDS_Biometrics_BDB_Image_Missing = 2416443392
ntfLDS_Biometrics_BDB_FormatID_Incorrect = 2416508928
ntfLDS_Biometrics_BDB_Version_Incorrect = 2416574464
ntfLDS_Biometrics_BDB_DataLength_Incorrect = 2416640000
ntfLDS_Biometrics_BDB_Data_Incorrect = 2416705536
ntfLDS_Biometrics_BDB_Data_Gender = 2416967680
ntfLDS_Biometrics_BDB_Data_EyeColor = 2417033216
ntfLDS_Biometrics_BDB_Data_HairColor = 2417098752
ntfLDS_Biometrics_BDB_Data_PoseAngle_Yaw = 2417164288
ntfLDS_Biometrics_BDB_Data_PoseAngle_Pitch = 2417229824
ntfLDS_Biometrics_BDB_Data_PoseAngle_Roll = 2417295360
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Yaw = 2417360896
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Pitch = 2417426432
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Roll = 2417491968
ntfLDS_Biometrics_BDB_Data_FaceImageType = 2417557504
ntfLDS_Biometrics_BDB_Data_ImageDataType = 2417623040
ntfLDS_SI_Storage_CS_NonConsistant = 2432696593
ntfLDS_SI_Storage_CS_PACE_CAM_Key_Missing = 2432696594
ntfLDS_Biometrics_RB_Data_Incorrect = 2449539072
ntfLDS_Biometrics_RB_Item_Incorrect = 2449604608
ntfLDS_Biometrics_RB_Item_Missing = 2449670144
ntfLDS_Biometrics_RB_Item_Unexpected = 2449735680
ntfLDS_Biometrics_RB_RID_Incorrect = 2449801232
ntfLDS_Biometrics_RB_ImageR_Incorrect = 2449801248
ntfLDS_Biometrics_RB_Image_Item_Incorrect = 2449801264
ntfLDS_Biometrics_RB_Image_Item_Missing = 2449801265
ntfLDS_Biometrics_RB_Image_Item_Unexpected = 2449801266
ntfLDS_Biometrics_RB_Image_Info_Item_Incorrect = 2449801280
ntfLDS_Biometrics_RB_Image_Info_Item_Missing = 2449801281
ntfLDS_Biometrics_RB_Image_Info_Item_Unexpected = 2449801282
ntfLDS_Biometrics_RB_Image_Info_Format_Incorrect = 2449801283
ntfLDS_Biometrics_RB_Image_Info_Format_Unsupported = 2449801284
ntfLDS_Biometrics_RB_Image_Info_Kind_Incorrect = 2449801285
ntfLDS_Biometrics_RB_Image_Info_Kind_Unsupported = 2449801286
ntfLDS_Biometrics_RB_Image_Info_PostAPB_Incorrect = 2449801287
ntfLDS_Biometrics_RB_Image_Info_LossyTA_Incorrect = 2449801288
ntfLDS_Biometrics_RB_Image_Info_LossyTA_Unsupported = 2449801289
ntfLDS_Biometrics_RB_Image_Info_Cam2Subj_Unsupported = 2449801290
ntfLDS_Biometrics_RB_Image_Info_SensDiag_Unsupported = 2449801291
ntfLDS_Biometrics_RB_Image_Info_LensF_Unsupported = 2449801292
ntfLDS_Biometrics_RB_Image_Info_ImSize_Incorrect = 2449801293
ntfLDS_Biometrics_RB_Image_Info_ImSize_Unsupported = 2449801294
ntfLDS_Biometrics_RB_Image_Info_ImMeas_Incorrect = 2449801295
ntfLDS_Biometrics_RB_Image_Info_Color_Incorrect = 2449801296
ntfLDS_Biometrics_RB_Image_Info_Color_Unsupported = 2449801297
ntfLDS_Biometrics_RB_Image_Info_ColorMap_Incorrect = 2449801298
ntfLDS_Biometrics_RB_Image_Capt_Item_Incorrect = 2449801312
ntfLDS_Biometrics_RB_Image_Capt_Item_Unexpected = 2449801313
ntfLDS_Biometrics_RB_Image_Capt_Spectral_Unsupported = 2449801314
ntfLDS_Biometrics_RB_Image_Capt_TechCode_Incorrect = 2449801315
ntfLDS_Biometrics_RB_Image_Capt_TechCode_Unsupported = 2449801316
ntfLDS_Biometrics_RB_Date_Item_Incorrect = 2449801328
ntfLDS_Biometrics_RB_Date_Item_Missing = 2449801329
ntfLDS_Biometrics_RB_Date_Item_Unexpected = 2449801330
ntfLDS_Biometrics_RB_Date_Incorrect = 2449801331
ntfLDS_Biometrics_RB_Quality_Item_Incorrect = 2449801344
ntfLDS_Biometrics_RB_Quality_Item_Missing = 2449801345
ntfLDS_Biometrics_RB_Quality_Item_Unexpected = 2449801346
ntfLDS_Biometrics_RB_Quality_AlgID_Item_Incorrect = 2449801347
ntfLDS_Biometrics_RB_Quality_SoE_Item_Incorrect = 2449801348
ntfLDS_Biometrics_RB_Quality_Score_Item_Incorrect = 2449801349
ntfLDS_Biometrics_RB_Quality_Error_Item_Incorrect = 2449801350
ntfLDS_Biometrics_RB_Quality_Error_Item_Unsupported = 2449801351
ntfLDS_Biometrics_RB_PAD_Item_Incorrect = 2449801360
ntfLDS_Biometrics_RB_PAD_Item_Unexpected = 2449801361
ntfLDS_Biometrics_RB_PAD_Decision_Item_Incorrect = 2449801362
ntfLDS_Biometrics_RB_PAD_Decision_Item_Unsupported = 2449801363
ntfLDS_Biometrics_RB_PAD_Score_Item_Incorrect = 2449801364
ntfLDS_Biometrics_RB_PAD_Score_RegID_Item_Incorrect = 2449801365
ntfLDS_Biometrics_RB_PAD_SoE_Item_Incorrect = 2449801366
ntfLDS_Biometrics_RB_PAD_SoE_Score_Item_Incorrect = 2449801367
ntfLDS_Biometrics_RB_PAD_SoE_Error_Item_Incorrect = 2449801368
ntfLDS_Biometrics_RB_PAD_SoE_Error_Item_Unsupported = 2449801369
ntfLDS_Biometrics_RB_PAD_ExtData_Item_Incorrect = 2449801370
ntfLDS_Biometrics_RB_PAD_ExtData_Type_Item_Incorrect = 2449801371
ntfLDS_Biometrics_RB_PAD_Context_Item_Incorrect = 2449801372
ntfLDS_Biometrics_RB_PAD_Context_Item_Unsupported = 2449801373
ntfLDS_Biometrics_RB_PAD_SLevel_Item_Incorrect = 2449801374
ntfLDS_Biometrics_RB_PAD_SLevel_Item_Unsupported = 2449801375
ntfLDS_Biometrics_RB_PAD_RiskLevel_Item_Incorrect = 2449801376
ntfLDS_Biometrics_RB_PAD_Criteria_Item_Incorrect = 2449801377
ntfLDS_Biometrics_RB_PAD_Criteria_Item_Unsupported = 2449801378
ntfLDS_Biometrics_RB_PAD_Date_Item_Incorrect = 2449801379
ntfLDS_Biometrics_RB_PAD_Date_Item_Missing = 2449801380
ntfLDS_Biometrics_RB_PAD_Date_Item_Unexpected = 2449801381
ntfLDS_Biometrics_RB_PAD_Date_Incorrect = 2449801382
ntfLDS_Biometrics_RB_SessionID_Incorrect = 2449801392
ntfLDS_Biometrics_RB_Derived_Incorrect = 2449801408
ntfLDS_Biometrics_RB_Device_Incorrect = 2449801424
ntfLDS_Biometrics_RB_Device_Item_Unexpected = 2449801425
ntfLDS_Biometrics_RB_Device_ModelID_Item_Incorrect = 2449801426
ntfLDS_Biometrics_RB_Device_CertID_Item_Incorrect = 2449801427
ntfLDS_Biometrics_RB_Metadata_Item_Incorrect = 2449801440
ntfLDS_Biometrics_RB_Metadata_Item_Unexpected = 2449801441
ntfLDS_Biometrics_RB_Metadata_Gender_Item_Incorrect = 2449801442
ntfLDS_Biometrics_RB_Metadata_Gender_Item_Unsupported = 2449801443
ntfLDS_Biometrics_RB_Metadata_Eye_Item_Incorrect = 2449801444
ntfLDS_Biometrics_RB_Metadata_Eye_Item_Unsupported = 2449801445
ntfLDS_Biometrics_RB_Metadata_Hair_Item_Incorrect = 2449801446
ntfLDS_Biometrics_RB_Metadata_Hair_Item_Unsupported = 2449801447
ntfLDS_Biometrics_RB_Metadata_Height_Item_Incorrect = 2449801448
ntfLDS_Biometrics_RB_Metadata_Props_Item_Incorrect = 2449801449
ntfLDS_Biometrics_RB_Metadata_Props_Item_Unexpected = 2449801450
ntfLDS_Biometrics_RB_Metadata_Express_Item_Incorrect = 2449801451
ntfLDS_Biometrics_RB_Metadata_Express_Item_Unexpected = 2449801452
ntfLDS_Biometrics_RB_Metadata_Pose_Item_Incorrect = 2449801453
ntfLDS_Biometrics_RB_Metadata_Pose_Item_Unexpected = 2449801454
ntfLDS_Biometrics_RB_LandMark_Item_Incorrect = 2449801456
ntfLDS_Biometrics_RB_LandMark_Item_Missing = 2449801457
ntfLDS_Biometrics_RB_LandMark_Item_Unexpected = 2449801458
ntfLDS_Biometrics_RB_LandMark_Kind_Item_Incorrect = 2449801459
ntfLDS_Biometrics_RB_LandMark_Mpeg4_Item_Incorrect = 2449801460
ntfLDS_Biometrics_RB_LandMark_Mpeg4_Item_Unsupported = 2449801461
ntfLDS_Biometrics_RB_LandMark_AntrL_Item_Incorrect = 2449801462
ntfLDS_Biometrics_RB_LandMark_Coord_Item_Incorrect = 2449801463
ntfLDS_DTC_ContentInfo_Version_Incorrect = 2415919872
ntfLDS_SI_PACE_Info_UnsupportedStdParameters = 2432696320
ntfLDS_SI_PACE_Info_DeprecatedVersion = 2432696321
ntfLDS_SI_PACE_DomainParams_UsingStdRef = 2432696322
ntfLDS_SI_PACE_DomainParams_UnsupportedAlgorithm = 2432696323
ntfLDS_SI_CA_Info_IncorrectVersion = 2432696324
ntfLDS_SI_CA_PublicKey_UnsupportedAlgorithm = 2432696325
ntfLDS_SI_CA_DomainParams_UnsupportedAlgorithm = 2432696326
ntfLDS_SI_TA_Info_IncorrectVersion = 2432696327
ntfLDS_SI_TA_Info_FileIDForVersion2 = 2432696328
ntfLDS_SI_eIDSecurity_UnsupportedDigestAlgorithm = 2432696329
ntfLDS_SI_RI_Info_IncorrectVersion = 2432696330
ntfLDS_SI_RI_DomainParams_UnsupportedAlgorithm = 2432696331
ntfLDS_SI_AA_Info_IncorrectVersion = 2432696332
ntfLDS_SI_AA_Info_UnsupportedAlgorithm = 2432696333
ntfLDS_SI_AA_Info_InconsistentAlgorithmReference = 2432696334
ntfLDS_SI_Storage_PACE_Info_NotAvailable = 2432696576
ntfLDS_SI_Storage_PACE_Info_NoStdParameters = 2432696577
ntfLDS_SI_Storage_PACE_Info_NoMatchingDomainParams = 2432696578
ntfLDS_SI_Storage_CA_Info_NotAvailable = 2432696579
ntfLDS_SI_Storage_CA_DomainParams_NoRequiredOption = 2432696580
ntfLDS_SI_Storage_CA_DomainParams_NotAvailable = 2432696581
ntfLDS_SI_Storage_CA_AnonymousInfos = 2432696582
ntfLDS_SI_Storage_CA_Info_NoMatchingDomainParams = 2432696583
ntfLDS_SI_Storage_CA_Info_NoMatchingPublicKey = 2432696584
ntfLDS_SI_Storage_CA_IncorrectInfosQuantity = 2432696585
ntfLDS_SI_Storage_TA_Info_NotAvailable = 2432696586
ntfLDS_SI_Storage_CardInfoLocator_MultipleEntries = 2432696587
ntfLDS_SI_Storage_eIDSecurityInfo_MultipleEntries = 2432696588
ntfLDS_SI_Storage_PrivilegedTI_MultipleEntries = 2432696589
ntfLDS_SI_Storage_PrivilegedTI_IncorrectUsage = 2432696590
ntfLDS_SI_Storage_RI_DomainParams_MultipleEntries = 2432696591
ntfLDS_SI_Storage_PACEInfos_NonConsistant = 2432696592
ntfLDS_CVCertificate_Profile_IncorrectVersion = 2432696833
ntfLDS_CVCertificate_Validity = 2432696834
ntfLDS_CVCertificate_NonCVCADomainParameters = 2432696835
ntfLDS_CV_Certificate_PrivateKey_IncorrectVersion = 2432696836
ntfLDS_TA_PACEStaticBindingUsed = 2432697088
ntfLDS_Auth_MLSignerInfo_Certificate_Validity = 2449473813
ntfLDS_Auth_MLSignerInfo_Certificate_RootIsNotTrusted = 2449473814
ntfLDS_Auth_MLSignerInfo_Certificate_CantFindCSCA = 2449473815
ntfLDS_Auth_MLSignerInfo_Certificate_Revoked = 2449473816
ntfLDS_Auth_MLSignerInfo_Certificate_SignatureInvalid = 2449473817
@classmethod
def from_json(cls, json_str: str) -> Self:
"""Create an instance of ParsingNotificationCodes from a JSON string"""
return cls(json.loads(json_str))