regula-documentreader-webclient 8.1.355rc0__py3-none-any.whl → 8.1.357.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of regula-documentreader-webclient might be problematic. Click here for more details.
- regula/documentreader/webclient/ext/__init__.py +0 -1
- regula/documentreader/webclient/ext/api/document_reader_api.py +2 -2
- regula/documentreader/webclient/ext/models/__init__.py +0 -2
- regula/documentreader/webclient/ext/models/authenticity/authenticity_check_list.py +64 -19
- regula/documentreader/webclient/ext/models/authenticity/fiber.py +7 -7
- regula/documentreader/webclient/ext/models/authenticity/ident.py +10 -9
- regula/documentreader/webclient/ext/models/authenticity/image_ident.py +8 -7
- regula/documentreader/webclient/ext/models/authenticity/ocr_security_text.py +7 -7
- regula/documentreader/webclient/ext/models/authenticity/security_feature.py +10 -8
- regula/documentreader/webclient/ext/models/images.py +4 -4
- regula/documentreader/webclient/ext/models/recognition_request.py +23 -24
- regula/documentreader/webclient/ext/models/recognition_response.py +6 -8
- regula/documentreader/webclient/ext/models/text.py +7 -12
- regula/documentreader/webclient/gen/__init__.py +100 -26
- regula/documentreader/webclient/gen/api/__init__.py +1 -2
- regula/documentreader/webclient/gen/api/healthcheck_api.py +687 -298
- regula/documentreader/webclient/gen/api/process_api.py +270 -125
- regula/documentreader/webclient/gen/api/transaction_api.py +1472 -673
- regula/documentreader/webclient/gen/api_client.py +583 -462
- regula/documentreader/webclient/gen/api_response.py +21 -0
- regula/documentreader/webclient/gen/configuration.py +222 -99
- regula/documentreader/webclient/gen/exceptions.py +81 -30
- regula/documentreader/webclient/gen/models/__init__.py +98 -25
- regula/documentreader/webclient/gen/models/area_array.py +85 -131
- regula/documentreader/webclient/gen/models/area_container.py +85 -157
- regula/documentreader/webclient/gen/models/auth_params.py +100 -526
- regula/documentreader/webclient/gen/models/authenticity_check_list.py +75 -136
- regula/documentreader/webclient/gen/models/authenticity_check_list_item.py +83 -0
- regula/documentreader/webclient/gen/models/authenticity_check_result.py +81 -160
- regula/documentreader/webclient/gen/models/authenticity_check_result_item.py +154 -217
- regula/documentreader/webclient/gen/models/authenticity_check_result_list_inner.py +174 -0
- regula/documentreader/webclient/gen/models/authenticity_result.py +68 -231
- regula/documentreader/webclient/gen/models/authenticity_result_type.py +35 -123
- regula/documentreader/webclient/gen/models/bar_code_module_type.py +32 -0
- regula/documentreader/webclient/gen/models/barcode_type.py +47 -0
- regula/documentreader/webclient/gen/models/bc_pdf417_info.py +75 -235
- regula/documentreader/webclient/gen/models/bc_roidetect.py +71 -183
- regula/documentreader/webclient/gen/models/binary_data.py +218 -0
- regula/documentreader/webclient/gen/models/byte_array_item.py +79 -0
- regula/documentreader/webclient/gen/models/byte_array_result.py +64 -233
- regula/documentreader/webclient/gen/models/candidates_list_item.py +83 -0
- regula/documentreader/webclient/gen/models/certificate_data.py +81 -0
- regula/documentreader/webclient/gen/models/check_diagnose.py +138 -329
- regula/documentreader/webclient/gen/models/check_result.py +15 -84
- regula/documentreader/webclient/gen/models/chosen_document_type.py +94 -334
- regula/documentreader/webclient/gen/models/chosen_document_type_result.py +80 -264
- regula/documentreader/webclient/gen/models/container_list.py +75 -134
- regula/documentreader/webclient/gen/models/container_list_list_inner.py +426 -0
- regula/documentreader/webclient/gen/models/critical.py +14 -82
- regula/documentreader/webclient/gen/models/cross_source_value_comparison.py +67 -156
- regula/documentreader/webclient/gen/models/data_module.py +74 -209
- regula/documentreader/webclient/gen/models/details_optical.py +83 -298
- regula/documentreader/webclient/gen/models/details_rfid.py +78 -268
- regula/documentreader/webclient/gen/models/device_info.py +76 -235
- regula/documentreader/webclient/gen/models/doc_bar_code_info.py +68 -230
- regula/documentreader/webclient/gen/models/doc_bar_code_info_fields_list.py +75 -135
- regula/documentreader/webclient/gen/models/doc_bar_code_info_item.py +83 -0
- regula/documentreader/webclient/gen/models/doc_graphics_info_item.py +83 -0
- regula/documentreader/webclient/gen/models/doc_visual_extended_field.py +105 -301
- regula/documentreader/webclient/gen/models/doc_visual_extended_field_item.py +83 -0
- regula/documentreader/webclient/gen/models/doc_visual_extended_info.py +75 -106
- regula/documentreader/webclient/gen/models/doc_visual_extended_info_item.py +83 -0
- regula/documentreader/webclient/gen/models/document_binary_info_result.py +90 -0
- regula/documentreader/webclient/gen/models/document_format.py +27 -105
- regula/documentreader/webclient/gen/models/document_image.py +63 -132
- regula/documentreader/webclient/gen/models/document_image_result.py +68 -231
- regula/documentreader/webclient/gen/models/document_position.py +111 -340
- regula/documentreader/webclient/gen/models/document_position_item.py +83 -0
- regula/documentreader/webclient/gen/models/document_position_result.py +68 -230
- regula/documentreader/webclient/gen/models/document_type.py +243 -539
- regula/documentreader/webclient/gen/models/document_type_recognition_result.py +15 -84
- regula/documentreader/webclient/gen/models/document_types_candidates.py +76 -131
- regula/documentreader/webclient/gen/models/document_types_candidates_list.py +76 -131
- regula/documentreader/webclient/gen/models/document_types_candidates_result.py +68 -230
- regula/documentreader/webclient/gen/models/documents_database.py +71 -191
- regula/documentreader/webclient/gen/models/encrypted_rcl_item.py +79 -0
- regula/documentreader/webclient/gen/models/encrypted_rcl_result.py +64 -233
- regula/documentreader/webclient/gen/models/error_coordinates.py +85 -0
- regula/documentreader/webclient/gen/models/face_api.py +88 -358
- regula/documentreader/webclient/gen/models/face_api_search.py +65 -159
- regula/documentreader/webclient/gen/models/face_detection.py +95 -0
- regula/documentreader/webclient/gen/models/face_detection_item.py +83 -0
- regula/documentreader/webclient/gen/models/face_detection_result.py +90 -0
- regula/documentreader/webclient/gen/models/face_item.py +109 -0
- regula/documentreader/webclient/gen/models/fdsid_list.py +91 -390
- regula/documentreader/webclient/gen/models/fiber_item.py +106 -0
- regula/documentreader/webclient/gen/models/fiber_result.py +103 -439
- regula/documentreader/webclient/gen/models/field_item.py +89 -0
- regula/documentreader/webclient/gen/models/file_image.py +81 -0
- regula/documentreader/webclient/gen/models/get_transactions_by_tag_response.py +66 -159
- regula/documentreader/webclient/gen/models/graph_data.py +95 -0
- regula/documentreader/webclient/gen/models/graphic_field.py +80 -271
- regula/documentreader/webclient/gen/models/graphic_field_type.py +40 -131
- regula/documentreader/webclient/gen/models/graphic_fields_list.py +75 -106
- regula/documentreader/webclient/gen/models/graphics_result.py +68 -231
- regula/documentreader/webclient/gen/models/healthcheck.py +117 -297
- regula/documentreader/webclient/gen/models/healthcheck_documents_database.py +91 -187
- regula/documentreader/webclient/gen/models/ident_item.py +110 -0
- regula/documentreader/webclient/gen/models/ident_result.py +107 -345
- regula/documentreader/webclient/gen/models/image_data.py +63 -132
- regula/documentreader/webclient/gen/models/image_qa.py +83 -304
- regula/documentreader/webclient/gen/models/image_quality_check.py +86 -263
- regula/documentreader/webclient/gen/models/image_quality_check_list.py +78 -133
- regula/documentreader/webclient/gen/models/image_quality_check_list_item.py +83 -0
- regula/documentreader/webclient/gen/models/image_quality_check_type.py +22 -97
- regula/documentreader/webclient/gen/models/image_quality_result.py +68 -231
- regula/documentreader/webclient/gen/models/image_transaction_data.py +61 -97
- regula/documentreader/webclient/gen/models/images.py +87 -133
- regula/documentreader/webclient/gen/models/images_available_source.py +64 -130
- regula/documentreader/webclient/gen/models/images_field.py +80 -162
- regula/documentreader/webclient/gen/models/images_field_value.py +94 -331
- regula/documentreader/webclient/gen/models/images_item.py +83 -0
- regula/documentreader/webclient/gen/models/images_result.py +68 -231
- regula/documentreader/webclient/gen/models/in_data.py +79 -131
- regula/documentreader/webclient/gen/models/in_data_transaction_images_field_value.py +72 -187
- regula/documentreader/webclient/gen/models/in_data_video.py +63 -131
- regula/documentreader/webclient/gen/models/input_barcode_type.py +33 -119
- regula/documentreader/webclient/gen/models/input_image_quality_checks.py +22 -97
- regula/documentreader/webclient/gen/models/lcid.py +179 -402
- regula/documentreader/webclient/gen/models/lexical_analysis_result.py +68 -234
- regula/documentreader/webclient/gen/models/license_item.py +79 -0
- regula/documentreader/webclient/gen/models/license_result.py +64 -233
- regula/documentreader/webclient/gen/models/light.py +61 -87
- regula/documentreader/webclient/gen/models/list_transactions_by_tag_response.py +75 -131
- regula/documentreader/webclient/gen/models/list_verified_fields.py +77 -105
- regula/documentreader/webclient/gen/models/list_verified_fields_item.py +83 -0
- regula/documentreader/webclient/gen/models/liveness_params.py +77 -247
- regula/documentreader/webclient/gen/models/log_level.py +17 -88
- regula/documentreader/webclient/gen/models/measure_system.py +14 -82
- regula/documentreader/webclient/gen/models/mrz_detect_mode_enum.py +15 -84
- regula/documentreader/webclient/gen/models/mrz_detector_result.py +90 -0
- regula/documentreader/webclient/gen/models/mrz_format.py +18 -90
- regula/documentreader/webclient/gen/models/mrz_position.py +124 -0
- regula/documentreader/webclient/gen/models/mrz_position_item.py +83 -0
- regula/documentreader/webclient/gen/models/mrz_position_result.py +90 -0
- regula/documentreader/webclient/gen/models/mrz_rows_item.py +91 -0
- regula/documentreader/webclient/gen/models/mrz_test_quality.py +105 -0
- regula/documentreader/webclient/gen/models/mrz_test_quality_item.py +83 -0
- regula/documentreader/webclient/gen/models/mrz_test_quality_result.py +90 -0
- regula/documentreader/webclient/gen/models/ocr_security_text_item.py +110 -0
- regula/documentreader/webclient/gen/models/ocr_security_text_result.py +107 -449
- regula/documentreader/webclient/gen/models/one_candidate.py +94 -334
- regula/documentreader/webclient/gen/models/one_candidate_item.py +87 -0
- regula/documentreader/webclient/gen/models/original_symbol.py +74 -167
- regula/documentreader/webclient/gen/models/out_data.py +75 -133
- regula/documentreader/webclient/gen/models/out_data_transaction_images_field_value.py +75 -213
- regula/documentreader/webclient/gen/models/p_array_field.py +103 -342
- regula/documentreader/webclient/gen/models/parsed_data.py +79 -0
- regula/documentreader/webclient/gen/models/parsing_error_codes.py +153 -0
- regula/documentreader/webclient/gen/models/parsing_notification_codes.py +237 -523
- regula/documentreader/webclient/gen/models/per_document_config.py +63 -131
- regula/documentreader/webclient/gen/models/photo_ident_item.py +110 -0
- regula/documentreader/webclient/gen/models/photo_ident_result.py +107 -423
- regula/documentreader/webclient/gen/models/point.py +63 -127
- regula/documentreader/webclient/gen/models/point_array.py +65 -97
- regula/documentreader/webclient/gen/models/points_container.py +75 -131
- regula/documentreader/webclient/gen/models/process_params.py +229 -1743
- regula/documentreader/webclient/gen/models/process_params_rfid.py +56 -97
- regula/documentreader/webclient/gen/models/process_request.py +113 -411
- regula/documentreader/webclient/gen/models/process_request_image.py +74 -159
- regula/documentreader/webclient/gen/models/process_response.py +96 -299
- regula/documentreader/webclient/gen/models/process_system_info.py +63 -131
- regula/documentreader/webclient/gen/models/processing_status.py +15 -84
- regula/documentreader/webclient/gen/models/raw_image_container_item.py +83 -0
- regula/documentreader/webclient/gen/models/raw_image_container_list.py +75 -131
- regula/documentreader/webclient/gen/models/rectangle_coordinates.py +71 -187
- regula/documentreader/webclient/gen/models/result.py +49 -133
- regula/documentreader/webclient/gen/models/result_item.py +195 -245
- regula/documentreader/webclient/gen/models/result_mrz_detector.py +93 -0
- regula/documentreader/webclient/gen/models/result_mrz_detector_item.py +83 -0
- regula/documentreader/webclient/gen/models/rfid_a_chip.py +33 -0
- regula/documentreader/webclient/gen/models/rfid_access_control_info.py +90 -0
- regula/documentreader/webclient/gen/models/rfid_access_control_procedure_type.py +35 -0
- regula/documentreader/webclient/gen/models/rfid_access_key.py +87 -0
- regula/documentreader/webclient/gen/models/rfid_application.py +101 -0
- regula/documentreader/webclient/gen/models/rfid_application_type.py +37 -0
- regula/documentreader/webclient/gen/models/rfid_attribute_data.py +81 -0
- regula/documentreader/webclient/gen/models/rfid_attribute_name.py +85 -0
- regula/documentreader/webclient/gen/models/rfid_authentication_procedure_type.py +31 -0
- regula/documentreader/webclient/gen/models/rfid_baud_rate.py +32 -0
- regula/documentreader/webclient/gen/models/rfid_card_properties_ext.py +123 -0
- regula/documentreader/webclient/gen/models/rfid_certificate_ex.py +130 -0
- regula/documentreader/webclient/gen/models/rfid_certificate_origin.py +36 -0
- regula/documentreader/webclient/gen/models/rfid_certificate_type.py +35 -0
- regula/documentreader/webclient/gen/models/rfid_data_file.py +118 -0
- regula/documentreader/webclient/gen/models/rfid_data_file_type.py +119 -0
- regula/documentreader/webclient/gen/models/rfid_data_group_type_tag.py +82 -0
- regula/documentreader/webclient/gen/models/rfid_dg1.py +111 -0
- regula/documentreader/webclient/gen/models/rfid_distinguished_name.py +95 -0
- regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_field.py +120 -0
- regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_field_item.py +85 -0
- regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_info.py +89 -0
- regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_info_item.py +83 -0
- regula/documentreader/webclient/gen/models/rfid_error_codes.py +141 -0
- regula/documentreader/webclient/gen/models/rfid_graphics_info_result.py +90 -0
- regula/documentreader/webclient/gen/models/rfid_location.py +15 -84
- regula/documentreader/webclient/gen/models/rfid_origin.py +71 -192
- regula/documentreader/webclient/gen/models/rfid_password_type.py +34 -0
- regula/documentreader/webclient/gen/models/rfid_pki_extension.py +81 -0
- regula/documentreader/webclient/gen/models/rfid_raw_data.py +81 -0
- regula/documentreader/webclient/gen/models/rfid_security_object.py +96 -0
- regula/documentreader/webclient/gen/models/rfid_session_data.py +150 -0
- regula/documentreader/webclient/gen/models/rfid_signer_info_ex.py +133 -0
- regula/documentreader/webclient/gen/models/rfid_terminal.py +84 -0
- regula/documentreader/webclient/gen/models/rfid_terminal_type.py +32 -0
- regula/documentreader/webclient/gen/models/rfid_text_data_result.py +90 -0
- regula/documentreader/webclient/gen/models/rfid_type.py +30 -0
- regula/documentreader/webclient/gen/models/rfid_validity.py +88 -0
- regula/documentreader/webclient/gen/models/rfidpkd_resource_type.py +35 -0
- regula/documentreader/webclient/gen/models/scenario.py +33 -117
- regula/documentreader/webclient/gen/models/security_feature_item.py +102 -0
- regula/documentreader/webclient/gen/models/security_feature_result.py +99 -345
- regula/documentreader/webclient/gen/models/security_feature_type.py +68 -185
- regula/documentreader/webclient/gen/models/security_object_certificates.py +83 -0
- regula/documentreader/webclient/gen/models/source.py +18 -88
- regula/documentreader/webclient/gen/models/source_validity.py +65 -129
- regula/documentreader/webclient/gen/models/status.py +86 -264
- regula/documentreader/webclient/gen/models/status_item.py +83 -0
- regula/documentreader/webclient/gen/models/status_result.py +68 -231
- regula/documentreader/webclient/gen/models/string_item.py +135 -0
- regula/documentreader/webclient/gen/models/string_recognition_result.py +81 -108
- regula/documentreader/webclient/gen/models/symbol.py +79 -0
- regula/documentreader/webclient/gen/models/symbol_candidate.py +72 -143
- regula/documentreader/webclient/gen/models/symbol_estimation_item.py +115 -0
- regula/documentreader/webclient/gen/models/symbol_recognition_result.py +87 -135
- regula/documentreader/webclient/gen/models/t_doc_binary_info.py +93 -0
- regula/documentreader/webclient/gen/models/t_doc_binary_info_item.py +83 -0
- regula/documentreader/webclient/gen/models/t_original_rfid_graphics_info.py +87 -0
- regula/documentreader/webclient/gen/models/t_original_rfid_graphics_info_item.py +83 -0
- regula/documentreader/webclient/gen/models/text.py +92 -214
- regula/documentreader/webclient/gen/models/text_available_source.py +67 -157
- regula/documentreader/webclient/gen/models/text_data_result.py +68 -230
- regula/documentreader/webclient/gen/models/text_field.py +115 -357
- regula/documentreader/webclient/gen/models/text_field_type.py +661 -1368
- regula/documentreader/webclient/gen/models/text_field_value.py +105 -307
- regula/documentreader/webclient/gen/models/text_item.py +83 -0
- regula/documentreader/webclient/gen/models/text_post_processing.py +16 -86
- regula/documentreader/webclient/gen/models/text_result.py +68 -231
- regula/documentreader/webclient/gen/models/transaction_image.py +61 -97
- regula/documentreader/webclient/gen/models/transaction_info.py +84 -302
- regula/documentreader/webclient/gen/models/transaction_process_get_response.py +79 -183
- regula/documentreader/webclient/gen/models/transaction_process_request.py +108 -299
- regula/documentreader/webclient/gen/models/transaction_process_response.py +107 -0
- regula/documentreader/webclient/gen/models/transaction_process_response_item.py +79 -0
- regula/documentreader/webclient/gen/models/transaction_process_result.py +93 -0
- regula/documentreader/webclient/gen/models/trf_ft_bytes.py +90 -0
- regula/documentreader/webclient/gen/models/trf_ft_string.py +85 -0
- regula/documentreader/webclient/gen/models/verification_result.py +17 -88
- regula/documentreader/webclient/gen/models/verified_field_map.py +85 -273
- regula/documentreader/webclient/gen/models/visibility.py +17 -88
- regula/documentreader/webclient/gen/models/visual_extended_field_item.py +112 -0
- regula/documentreader/webclient/gen/py.typed +0 -0
- regula/documentreader/webclient/gen/rest.py +132 -174
- {regula_documentreader_webclient-8.1.355rc0.dist-info → regula_documentreader_webclient-8.1.357.dev0.dist-info}/METADATA +17 -6
- regula_documentreader_webclient-8.1.357.dev0.dist-info/RECORD +263 -0
- {regula_documentreader_webclient-8.1.355rc0.dist-info → regula_documentreader_webclient-8.1.357.dev0.dist-info}/WHEEL +1 -1
- regula/documentreader/webclient/ext/models/raw_authenticity_result_item.py +0 -27
- regula/documentreader/webclient/ext/models/raw_result_item.py +0 -26
- regula/documentreader/webclient/gen/api/default_api.py +0 -160
- regula/documentreader/webclient/gen/models/authenticity_result_all_of.py +0 -120
- regula/documentreader/webclient/gen/models/byte_array_result_all_of.py +0 -122
- regula/documentreader/webclient/gen/models/chosen_document_type_result_all_of.py +0 -145
- regula/documentreader/webclient/gen/models/device_info2.py +0 -275
- regula/documentreader/webclient/gen/models/doc_bar_code_info_all_of.py +0 -119
- regula/documentreader/webclient/gen/models/document_image_result_all_of.py +0 -120
- regula/documentreader/webclient/gen/models/document_position_result_all_of.py +0 -119
- regula/documentreader/webclient/gen/models/document_types_candidates_result_all_of.py +0 -119
- regula/documentreader/webclient/gen/models/encrypted_rcl_result_all_of.py +0 -122
- regula/documentreader/webclient/gen/models/fiber_result_all_of.py +0 -343
- regula/documentreader/webclient/gen/models/graphics_result_all_of.py +0 -119
- regula/documentreader/webclient/gen/models/ident_result_all_of.py +0 -249
- regula/documentreader/webclient/gen/models/image_quality_result_all_of.py +0 -120
- regula/documentreader/webclient/gen/models/images_result_all_of.py +0 -120
- regula/documentreader/webclient/gen/models/in_data_rfid_session.py +0 -121
- regula/documentreader/webclient/gen/models/inline_response200.py +0 -197
- regula/documentreader/webclient/gen/models/inline_response2001.py +0 -333
- regula/documentreader/webclient/gen/models/lexical_analysis_result_all_of.py +0 -119
- regula/documentreader/webclient/gen/models/license_result_all_of.py +0 -122
- regula/documentreader/webclient/gen/models/ocr_security_text_result_all_of.py +0 -353
- regula/documentreader/webclient/gen/models/photo_ident_result_all_of.py +0 -327
- regula/documentreader/webclient/gen/models/security_feature_result_all_of.py +0 -249
- regula/documentreader/webclient/gen/models/status_result_all_of.py +0 -120
- regula/documentreader/webclient/gen/models/text_data_result_all_of.py +0 -119
- regula/documentreader/webclient/gen/models/text_result_all_of.py +0 -120
- regula/documentreader/webclient/gen/models/tfdsid_list.py +0 -372
- regula/documentreader/webclient/gen/models/transaction_images_field_value.py +0 -227
- regula/documentreader/webclient/gen/models/transaction_scenario_request.py +0 -119
- regula_documentreader_webclient-8.1.355rc0.dist-info/RECORD +0 -192
- {regula_documentreader_webclient-8.1.355rc0.dist-info → regula_documentreader_webclient-8.1.357.dev0.dist-info}/top_level.txt +0 -0
|
@@ -4,534 +4,248 @@
|
|
|
4
4
|
Generated by: https://openapi-generator.tech
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
import
|
|
8
|
-
import
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
import json
|
|
9
|
+
from enum import Enum
|
|
10
|
+
from typing_extensions import Self
|
|
9
11
|
|
|
10
|
-
import six
|
|
11
12
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"""
|
|
18
|
-
The enumeration contains possible values of notification codes returned during the RFID chip processing.
|
|
19
|
-
"""
|
|
20
|
-
class ParsingNotificationCodes(object):
|
|
21
|
-
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
22
|
-
Ref: https://openapi-generator.tech
|
|
23
|
-
|
|
24
|
-
Do not edit the class manually.
|
|
13
|
+
class ParsingNotificationCodes(int, Enum):
|
|
14
|
+
"""
|
|
15
|
+
The enumeration contains possible values of notification codes returned during the RFID chip processing.
|
|
25
16
|
"""
|
|
26
|
-
|
|
27
|
-
ntfLDS_ASN_Certificate_IncorrectVersion = int("-1879048191")
|
|
28
|
-
|
|
29
|
-
ntfLDS_ASN_Certificate_NonMatchingSignatureAlgorithm = int("-1879048190")
|
|
30
|
-
|
|
31
|
-
ntfLDS_ASN_Certificate_IncorrectTimeCoding = int("-1879048189")
|
|
32
|
-
|
|
33
|
-
ntfLDS_ASN_Certificate_IncorrectUseOfGeneralizedTime = int("-1879048188")
|
|
34
|
-
|
|
35
|
-
ntfLDS_ASN_Certificate_EmptyIssuer = int("-1879048187")
|
|
36
|
-
|
|
37
|
-
ntfLDS_ASN_Certificate_EmptySubject = int("-1879048186")
|
|
38
|
-
|
|
39
|
-
ntfLDS_ASN_Certificate_UnsupportedCriticalExtension = int("-1879048184")
|
|
40
|
-
|
|
41
|
-
ntfLDS_ASN_Certificate_ForcedDefaultCSCARole = int("-1879048178")
|
|
42
|
-
|
|
43
|
-
ntfLDS_ASN_Certificate_ForcedDefaultDSRole = int("-1879048177")
|
|
44
|
-
|
|
45
|
-
ntfLDS_ASN_Certificate_IncorrectIssuerSubjectDS = int("-1879048176")
|
|
46
|
-
|
|
47
|
-
ntfLDS_ASN_Certificate_DuplicatingExtensions = int("-1879048169")
|
|
48
|
-
|
|
49
|
-
ntfLDS_ICAO_Certificate_Version_Missed = int("-1879047680")
|
|
50
|
-
|
|
51
|
-
ntfLDS_ICAO_Certificate_Version_Incorrect = int("-1879047679")
|
|
52
|
-
|
|
53
|
-
ntfLDS_ICAO_Certificate_Issuer_Country_Missed = int("-1879047678")
|
|
54
|
-
|
|
55
|
-
ntfLDS_ICAO_Certificate_Issuer_CommonName_Missed = int("-1879047677")
|
|
56
|
-
|
|
57
|
-
ntfLDS_ICAO_Certificate_Issuer_CountryNonCompliant = int("-1879047676")
|
|
58
|
-
|
|
59
|
-
ntfLDS_ICAO_Certificate_Subject_Country_Missed = int("-1879047675")
|
|
60
|
-
|
|
61
|
-
ntfLDS_ICAO_Certificate_Subject_CommonName_Missed = int("-1879047674")
|
|
62
|
-
|
|
63
|
-
ntfLDS_ICAO_Certificate_Subject_CountryNonCompliant = int("-1879047673")
|
|
64
|
-
|
|
65
|
-
ntfLDS_ICAO_Certificate_UsingNonCompliantData = int("-1879047672")
|
|
66
|
-
|
|
67
|
-
ntfLDS_ICAO_Certificate_UnsupportedSignatureAlgorithm = int("-1879047671")
|
|
68
|
-
|
|
69
|
-
ntfLDS_ICAO_Certificate_UnsupportedPublicKeyAlgorithm = int("-1879047670")
|
|
70
|
-
|
|
71
|
-
ntfLDS_ICAO_Certificate_MissedExtensions = int("-1879047669")
|
|
72
|
-
|
|
73
|
-
ntfLDS_ICAO_Certificate_Validity = int("-1879047668")
|
|
74
|
-
|
|
75
|
-
ntfLDS_ICAO_Certificate_Ext_UsingNonCompliantData = int("-1879047667")
|
|
76
|
-
|
|
77
|
-
ntfLDS_ICAO_Certificate_Ext_KeyUsage_Missed = int("-1879047666")
|
|
78
|
-
|
|
79
|
-
ntfLDS_ICAO_Certificate_Ext_KeyUsage_NotCritical = int("-1879047665")
|
|
80
|
-
|
|
81
|
-
ntfLDS_ICAO_Certificate_Ext_KeyUsage_IncorrectData = int("-1879047664")
|
|
82
|
-
|
|
83
|
-
ntfLDS_ICAO_Certificate_Ext_BasicC_Missed = int("-1879047663")
|
|
84
|
-
|
|
85
|
-
ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectUsage1 = int("-1879047662")
|
|
86
|
-
|
|
87
|
-
ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectUsage2 = int("-1879047661")
|
|
88
|
-
|
|
89
|
-
ntfLDS_ICAO_Certificate_Ext_BasicC_NotCritical = int("-1879047660")
|
|
90
|
-
|
|
91
|
-
ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectData = int("-1879047659")
|
|
92
|
-
|
|
93
|
-
ntfLDS_ICAO_Certificate_Ext_BasicC_PathLenC_Missed = int("-1879047658")
|
|
94
|
-
|
|
95
|
-
ntfLDS_ICAO_Certificate_Ext_BasicC_PathLenC_Incorrect = int("-1879047657")
|
|
96
|
-
|
|
97
|
-
ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_NotCritical = int("-1879047656")
|
|
98
|
-
|
|
99
|
-
ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_IncorrectUsage = int("-1879047655")
|
|
100
|
-
|
|
101
|
-
ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_IncorrectData = int("-1879047654")
|
|
102
|
-
|
|
103
|
-
ntfLDS_ICAO_Certificate_Ext_AuthKeyID_Missed = int("-1879047653")
|
|
104
|
-
|
|
105
|
-
ntfLDS_ICAO_Certificate_Ext_AuthKeyID_IncorrectData = int("-1879047652")
|
|
106
|
-
|
|
107
|
-
ntfLDS_ICAO_Certificate_Ext_AuthKeyID_KeyID_Missed = int("-1879047651")
|
|
108
|
-
|
|
109
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectKeyID_Missed = int("-1879047650")
|
|
110
|
-
|
|
111
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectKeyID_IncorrectData = int("-1879047649")
|
|
112
|
-
|
|
113
|
-
ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_Missed = int("-1879047648")
|
|
114
|
-
|
|
115
|
-
ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_IncorrectData = int("-1879047647")
|
|
116
|
-
|
|
117
|
-
ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_Empty = int("-1879047646")
|
|
118
|
-
|
|
119
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Missed = int("-1879047645")
|
|
120
|
-
|
|
121
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_IncorrectData = int("-1879047644")
|
|
122
|
-
|
|
123
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Empty = int("-1879047643")
|
|
124
|
-
|
|
125
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_NonCompliant = int("-1879047642")
|
|
126
|
-
|
|
127
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Critical = int("-1879047640")
|
|
128
|
-
|
|
129
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_Empty = int("-1879047639")
|
|
130
|
-
|
|
131
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_Incorrect = int("-1879047638")
|
|
132
|
-
|
|
133
|
-
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_NonCompliant = int("-1879047637")
|
|
134
|
-
|
|
135
|
-
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Missed = int("-1879047636")
|
|
136
|
-
|
|
137
|
-
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_IncorrectData = int("-1879047635")
|
|
138
|
-
|
|
139
|
-
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Empty = int("-1879047634")
|
|
140
|
-
|
|
141
|
-
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_NonCompliant = int("-1879047633")
|
|
142
|
-
|
|
143
|
-
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Critical = int("-1879047631")
|
|
144
|
-
|
|
145
|
-
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_Empty = int("-1879047630")
|
|
146
|
-
|
|
147
|
-
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_Incorrect = int("-1879047629")
|
|
148
|
-
|
|
149
|
-
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_NonCompliant = int("-1879047628")
|
|
150
|
-
|
|
151
|
-
ntfLDS_ICAO_Certificate_Ext_DocTypeList_Missed = int("-1879047627")
|
|
152
|
-
|
|
153
|
-
ntfLDS_ICAO_Certificate_Ext_DocTypeList_IncorrectData = int("-1879047626")
|
|
154
|
-
|
|
155
|
-
ntfLDS_ICAO_Certificate_Ext_DocTypeList_Version = int("-1879047625")
|
|
156
|
-
|
|
157
|
-
ntfLDS_ICAO_Certificate_Ext_DocTypeList_DocTypes = int("-1879047624")
|
|
158
|
-
|
|
159
|
-
ntfLDS_ICAO_Certificate_Ext_DocTypeList_DocTypes_Empty = int("-1879047623")
|
|
160
|
-
|
|
161
|
-
ntfLDS_ICAO_Certificate_Ext_CertPolicies_IncorrectData = int("-1879047622")
|
|
162
|
-
|
|
163
|
-
ntfLDS_ICAO_Certificate_Ext_CertPolicies_Empty = int("-1879047621")
|
|
164
|
-
|
|
165
|
-
ntfLDS_ICAO_Certificate_Ext_CertPolicies_PolicyID_Missed = int("-1879047620")
|
|
166
|
-
|
|
167
|
-
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_Missed = int("-1879047619")
|
|
168
|
-
|
|
169
|
-
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_IncorrectData = int("-1879047618")
|
|
170
|
-
|
|
171
|
-
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_Empty = int("-1879047617")
|
|
172
|
-
|
|
173
|
-
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_PointMissed = int("-1879047616")
|
|
174
|
-
|
|
175
|
-
ntfLDS_ICAO_Certificate_SN_NonCompliant = int("-1879047615")
|
|
176
|
-
|
|
177
|
-
ntfLDS_ICAO_Certificate_Issuer_SN_NonCompliant = int("-1879047614")
|
|
178
|
-
|
|
179
|
-
ntfLDS_ICAO_Certificate_Subject_SN_NonCompliant = int("-1879047613")
|
|
180
|
-
|
|
181
|
-
ntfLDS_ICAO_Certificate_Issuer_AttributeNonCompliant = int("-1879047612")
|
|
182
|
-
|
|
183
|
-
ntfLDS_ICAO_Certificate_Subject_AttributeNonCompliant = int("-1879047611")
|
|
184
|
-
|
|
185
|
-
ntfLDS_ICAO_Certificate_IssuerSubject_Country_NonMatching = int("-1879047610")
|
|
186
|
-
|
|
187
|
-
ntfLDS_ICAO_Certificate_Ext_CSCA_AltNames_NonMatching = int("-1879047609")
|
|
188
|
-
|
|
189
|
-
ntfLDS_ICAO_Certificate_Ext_NameChange_IncorrectData = int("-1879047608")
|
|
190
|
-
|
|
191
|
-
ntfLDS_ICAO_Certificate_Ext_NameChange_NonCompliant = int("-1879047607")
|
|
192
|
-
|
|
193
|
-
ntfLDS_ICAO_Certificate_Ext_NameChange_Critical = int("-1879047606")
|
|
194
|
-
|
|
195
|
-
ntfLDS_ICAO_Certificate_Ext_DocTypeList_NonCompliant = int("-1879047605")
|
|
196
|
-
|
|
197
|
-
ntfLDS_ICAO_Certificate_Ext_DocTypeList_Critical = int("-1879047604")
|
|
198
|
-
|
|
199
|
-
ntfLDS_ICAO_Certificate_Ext_Optional_Critical = int("-1879047603")
|
|
200
|
-
|
|
201
|
-
ntfLDS_ICAO_Certificate_Subject_NonCompliant = int("-1879047602")
|
|
202
|
-
|
|
203
|
-
ntfLDS_ICAO_Certificate_Subject_CommonNameNonCompliant = int("-1879047601")
|
|
204
|
-
|
|
205
|
-
ntfLDS_ICAO_COM_LDS_Version_Incorrect = int("-1879048160")
|
|
206
|
-
|
|
207
|
-
ntfLDS_ICAO_COM_LDS_Version_Missing = int("-1879048159")
|
|
208
|
-
|
|
209
|
-
ntfLDS_ICAO_COM_Unicode_Version_Incorrect = int("-1879048158")
|
|
210
|
-
|
|
211
|
-
ntfLDS_ICAO_COM_Unicode_Version_Missing = int("-1879048157")
|
|
212
|
-
|
|
213
|
-
ntfLDS_ICAO_COM_DGPM_Incorrect = int("-1879048156")
|
|
214
|
-
|
|
215
|
-
ntfLDS_ICAO_COM_DGPM_Missing = int("-1879048155")
|
|
216
|
-
|
|
217
|
-
ntfLDS_ICAO_COM_DGPM_Unexpected = int("-1879048154")
|
|
218
|
-
|
|
219
|
-
ntfLDS_ICAO_Application_LDSVersion_Unsupported = int("-1879048144")
|
|
220
|
-
|
|
221
|
-
ntfLDS_ICAO_Application_UnicodeVersion_Unsupported = int("-1879048143")
|
|
222
|
-
|
|
223
|
-
ntfLDS_ICAO_Application_LDSVersion_Inconsistent = int("-1879048142")
|
|
224
|
-
|
|
225
|
-
ntfLDS_ICAO_Application_UnicodeVersion_Inconsistent = int("-1879048141")
|
|
226
|
-
|
|
227
|
-
ntfLDS_ASN_SignedData_OID_Incorrect = int("-1879047936")
|
|
228
|
-
|
|
229
|
-
ntfLDS_ASN_SignedData_Version_Incorrect = int("-1879047776")
|
|
230
|
-
|
|
231
|
-
ntfLDS_ASN_SignedData_ContentOID_Incorrect = int("-1879047775")
|
|
232
|
-
|
|
233
|
-
ntfLDS_ICAO_SignedData_Version_Incorrect = int("-1879047935")
|
|
234
|
-
|
|
235
|
-
ntfLDS_ICAO_SignedData_DigestAlgorithms_Empty = int("-1879047934")
|
|
236
|
-
|
|
237
|
-
ntfLDS_ICAO_SignedData_DigestAlgorithms_Unsupported = int("-1879047933")
|
|
238
|
-
|
|
239
|
-
ntfLDS_ICAO_SignedData_SignerInfos_MultipleEntries = int("-1879047927")
|
|
240
|
-
|
|
241
|
-
ntfLDS_ICAO_SignedData_Certificates_Missed = int("-1879047760")
|
|
242
|
-
|
|
243
|
-
ntfLDS_ICAO_SignedData_Certificates_Empty = int("-1879047759")
|
|
244
|
-
|
|
245
|
-
ntfLDS_ICAO_SignedData_CRLs_IncorrectUsage = int("-1879047758")
|
|
246
|
-
|
|
247
|
-
ntfLDS_ICAO_LDSObject_IncorrectContentOID = int("-1879047932")
|
|
248
|
-
|
|
249
|
-
ntfLDS_ICAO_LDSObject_DGNumber_Incorrect = int("-1879047931")
|
|
250
|
-
|
|
251
|
-
ntfLDS_ICAO_LDSObject_DGHash_Missing = int("-1879047930")
|
|
252
|
-
|
|
253
|
-
ntfLDS_ICAO_LDSObject_DGHash_Extra = int("-1879047929")
|
|
254
|
-
|
|
255
|
-
ntfLDS_ICAO_LDSObject_Version_Incorrect = int("-1879047928")
|
|
256
|
-
|
|
257
|
-
ntfLDS_ICAO_MasterList_Version_Incorrect = int("-1879047744")
|
|
258
|
-
|
|
259
|
-
ntfLDS_ICAO_DeviationList_Version_Incorrect = int("-1879047736")
|
|
260
|
-
|
|
261
|
-
ntfLDS_BSI_DefectList_Version_Incorrect = int("-1879047728")
|
|
262
|
-
|
|
263
|
-
ntfLDS_BSI_BlackList_Version_Incorrect = int("-1879047720")
|
|
264
|
-
|
|
265
|
-
ntfLDS_ASN_SignerInfo_Version_Incorrect = int("-1879047926")
|
|
266
|
-
|
|
267
|
-
ntfLDS_ASN_SignerInfo_SID_IncorrectChoice = int("-1879047925")
|
|
268
|
-
|
|
269
|
-
ntfLDS_ASN_SignerInfo_SID_DigestAlgorithmNotListed = int("-1879047924")
|
|
270
|
-
|
|
271
|
-
ntfLDS_ASN_SignerInfo_MessageDigestAttr_Missing = int("-1879047923")
|
|
272
|
-
|
|
273
|
-
ntfLDS_ASN_SignerInfo_MessageDigestAttr_Data = int("-1879047922")
|
|
274
|
-
|
|
275
|
-
ntfLDS_ASN_SignerInfo_MessageDigestAttr_Value = int("-1879047921")
|
|
276
|
-
|
|
277
|
-
ntfLDS_ASN_SignerInfo_ContentTypeAttr_Missing = int("-1879047920")
|
|
278
|
-
|
|
279
|
-
ntfLDS_ASN_SignerInfo_ContentTypeAttr_Data = int("-1879047919")
|
|
280
|
-
|
|
281
|
-
ntfLDS_ASN_SignerInfo_ContentTypeAttr_Value = int("-1879047918")
|
|
282
|
-
|
|
283
|
-
ntfLDS_ASN_SignerInfo_SigningTimeAttr_Missing = int("-1879047909")
|
|
284
|
-
|
|
285
|
-
ntfLDS_ASN_SignerInfo_SigningTimeAttr_Data = int("-1879047908")
|
|
286
|
-
|
|
287
|
-
ntfLDS_ASN_SignerInfo_SigningTimeAttr_Value = int("-1879047907")
|
|
288
|
-
|
|
289
|
-
ntfLDS_ASN_SignerInfo_ListContentDescriptionAttr_Missing = int("-1879047906")
|
|
290
|
-
|
|
291
|
-
ntfLDS_ASN_SignerInfo_ListContentDescriptionAttr_Data = int("-1879047905")
|
|
292
|
-
|
|
293
|
-
ntfLDS_Auth_SignerInfo_Certificate_Validity = int("-1879047915")
|
|
294
|
-
|
|
295
|
-
ntfLDS_Auth_SignerInfo_Certificate_RootIsNotTrusted = int("-1879047914")
|
|
296
|
-
|
|
297
|
-
ntfLDS_Auth_SignerInfo_Certificate_CantFindCSCA = int("-1879047913")
|
|
298
|
-
|
|
299
|
-
ntfLDS_Auth_SignerInfo_Certificate_Revoked = int("-1879047912")
|
|
300
|
-
|
|
301
|
-
ntfLDS_Auth_SignerInfo_Certificate_SignatureInvalid = int("-1879047911")
|
|
302
|
-
|
|
303
|
-
ntfLDS_UnsupportedImageFormat = int("-1879047910")
|
|
304
|
-
|
|
305
|
-
ntfLDS_MRZ_DocumentType_Unknown = int("139272")
|
|
306
|
-
|
|
307
|
-
ntfLDS_MRZ_IssuingState_SyntaxError = int("139273")
|
|
308
|
-
|
|
309
|
-
ntfLDS_MRZ_Name_IsVoid = int("139274")
|
|
310
|
-
|
|
311
|
-
ntfLDS_MRZ_Number_IncorrectChecksum = int("139277")
|
|
312
|
-
|
|
313
|
-
ntfLDS_MRZ_Nationality_SyntaxError = int("139278")
|
|
314
|
-
|
|
315
|
-
ntfLDS_MRZ_DOB_SyntaxError = int("139279")
|
|
316
|
-
|
|
317
|
-
ntfLDS_MRZ_DOB_Error = int("139280")
|
|
318
|
-
|
|
319
|
-
ntfLDS_MRZ_DOB_IncorrectChecksum = int("139281")
|
|
320
|
-
|
|
321
|
-
ntfLDS_MRZ_Sex_Incorrect = int("139282")
|
|
322
|
-
|
|
323
|
-
ntfLDS_MRZ_DOE_SyntaxError = int("139283")
|
|
324
|
-
|
|
325
|
-
ntfLDS_MRZ_DOE_Error = int("139284")
|
|
326
|
-
|
|
327
|
-
ntfLDS_MRZ_DOE_IncorrectChecksum = int("139285")
|
|
328
|
-
|
|
329
|
-
ntfLDS_MRZ_OptionalData_IncorrectChecksum = int("139286")
|
|
330
|
-
|
|
331
|
-
ntfLDS_MRZ_IncorrectChecksum = int("139287")
|
|
332
|
-
|
|
333
|
-
ntfLDS_MRZ_Incorrect = int("139288")
|
|
334
|
-
|
|
335
|
-
ntfLDS_Biometrics_FormatOwner_Missing = int("-1878982656")
|
|
336
|
-
|
|
337
|
-
ntfLDS_Biometrics_FormatOwner_Incorrect = int("-1878917120")
|
|
338
|
-
|
|
339
|
-
ntfLDS_Biometrics_FormatType_Missing = int("-1878851584")
|
|
340
|
-
|
|
341
|
-
ntfLDS_Biometrics_FormatType_Incorrect = int("-1878786048")
|
|
342
|
-
|
|
343
|
-
ntfLDS_Biometrics_Type_Incorrect = int("-1878720512")
|
|
344
|
-
|
|
345
|
-
ntfLDS_Biometrics_SubType_Missing = int("-1878654976")
|
|
346
|
-
|
|
347
|
-
ntfLDS_Biometrics_SubType_Incorrect = int("-1878589440")
|
|
348
|
-
|
|
349
|
-
ntfLDS_Biometrics_BDB_Image_Missing = int("-1878523904")
|
|
350
|
-
|
|
351
|
-
ntfLDS_Biometrics_BDB_FormatID_Incorrect = int("-1878458368")
|
|
352
|
-
|
|
353
|
-
ntfLDS_Biometrics_BDB_Version_Incorrect = int("-1878392832")
|
|
354
|
-
|
|
355
|
-
ntfLDS_Biometrics_BDB_DataLength_Incorrect = int("-1878327296")
|
|
356
|
-
|
|
357
|
-
ntfLDS_Biometrics_BDB_Data_Gender = int("-1877999616")
|
|
358
|
-
|
|
359
|
-
ntfLDS_Biometrics_BDB_Data_EyeColor = int("-1877934080")
|
|
360
|
-
|
|
361
|
-
ntfLDS_Biometrics_BDB_Data_HairColor = int("-1877868544")
|
|
362
|
-
|
|
363
|
-
ntfLDS_Biometrics_BDB_Data_PoseAngle_Yaw = int("-1877803008")
|
|
364
|
-
|
|
365
|
-
ntfLDS_Biometrics_BDB_Data_PoseAngle_Pitch = int("-1877737472")
|
|
366
|
-
|
|
367
|
-
ntfLDS_Biometrics_BDB_Data_PoseAngle_Roll = int("-1877671936")
|
|
368
|
-
|
|
369
|
-
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Yaw = int("-1877606400")
|
|
370
|
-
|
|
371
|
-
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Pitch = int("-1877540864")
|
|
372
|
-
|
|
373
|
-
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Roll = int("-1877475328")
|
|
374
|
-
|
|
375
|
-
ntfLDS_Biometrics_BDB_Data_FaceImageType = int("-1877409792")
|
|
376
|
-
|
|
377
|
-
ntfLDS_Biometrics_BDB_Data_ImageDataType = int("-1877344256")
|
|
378
|
-
|
|
379
|
-
ntfLDS_SI_PACE_Info_UnsupportedStdParameters = int("-1862270976")
|
|
380
|
-
|
|
381
|
-
ntfLDS_SI_PACE_Info_DeprecatedVersion = int("-1862270975")
|
|
382
|
-
|
|
383
|
-
ntfLDS_SI_PACE_DomainParams_UsingStdRef = int("-1862270974")
|
|
384
|
-
|
|
385
|
-
ntfLDS_SI_PACE_DomainParams_UnsupportedAlgorithm = int("-1862270973")
|
|
386
|
-
|
|
387
|
-
ntfLDS_SI_CA_Info_IncorrectVersion = int("-1862270972")
|
|
388
|
-
|
|
389
|
-
ntfLDS_SI_CA_PublicKey_UnsupportedAlgorithm = int("-1862270971")
|
|
390
|
-
|
|
391
|
-
ntfLDS_SI_CA_DomainParams_UnsupportedAlgorithm = int("-1862270970")
|
|
392
|
-
|
|
393
|
-
ntfLDS_SI_TA_Info_IncorrectVersion = int("-1862270969")
|
|
394
|
-
|
|
395
|
-
ntfLDS_SI_TA_Info_FileIDForVersion2 = int("-1862270968")
|
|
396
|
-
|
|
397
|
-
ntfLDS_SI_eIDSecurity_UnsupportedDigestAlgorithm = int("-1862270967")
|
|
398
|
-
|
|
399
|
-
ntfLDS_SI_RI_Info_IncorrectVersion = int("-1862270966")
|
|
400
|
-
|
|
401
|
-
ntfLDS_SI_RI_DomainParams_UnsupportedAlgorithm = int("-1862270965")
|
|
402
|
-
|
|
403
|
-
ntfLDS_SI_AA_Info_IncorrectVersion = int("-1862270964")
|
|
404
|
-
|
|
405
|
-
ntfLDS_SI_AA_Info_UnsupportedAlgorithm = int("-1862270963")
|
|
406
|
-
|
|
407
|
-
ntfLDS_SI_AA_Info_InconsistentAlgorithmReference = int("-1862270962")
|
|
408
|
-
|
|
409
|
-
ntfLDS_SI_Storage_PACE_Info_NotAvailable = int("-1862270720")
|
|
410
|
-
|
|
411
|
-
ntfLDS_SI_Storage_PACE_Info_NoStdParameters = int("-1862270719")
|
|
412
|
-
|
|
413
|
-
ntfLDS_SI_Storage_PACE_Info_NoMatchingDomainParams = int("-1862270718")
|
|
414
|
-
|
|
415
|
-
ntfLDS_SI_Storage_CA_Info_NotAvailable = int("-1862270717")
|
|
416
|
-
|
|
417
|
-
ntfLDS_SI_Storage_CA_DomainParams_NoRequiredOption = int("-1862270716")
|
|
418
|
-
|
|
419
|
-
ntfLDS_SI_Storage_CA_DomainParams_NotAvailable = int("-1862270715")
|
|
420
|
-
|
|
421
|
-
ntfLDS_SI_Storage_CA_AnonymousInfos = int("-1862270714")
|
|
422
|
-
|
|
423
|
-
ntfLDS_SI_Storage_CA_Info_NoMatchingDomainParams = int("-1862270713")
|
|
424
|
-
|
|
425
|
-
ntfLDS_SI_Storage_CA_Info_NoMatchingPublicKey = int("-1862270712")
|
|
426
|
-
|
|
427
|
-
ntfLDS_SI_Storage_CA_IncorrectInfosQuantity = int("-1862270711")
|
|
428
|
-
|
|
429
|
-
ntfLDS_SI_Storage_TA_Info_NotAvailable = int("-1862270710")
|
|
430
|
-
|
|
431
|
-
ntfLDS_SI_Storage_CardInfoLocator_MultipleEntries = int("-1862270709")
|
|
432
|
-
|
|
433
|
-
ntfLDS_SI_Storage_eIDSecurityInfo_MultipleEntries = int("-1862270708")
|
|
434
|
-
|
|
435
|
-
ntfLDS_SI_Storage_PrivilegedTI_MultipleEntries = int("-1862270707")
|
|
436
|
-
|
|
437
|
-
ntfLDS_SI_Storage_PrivilegedTI_IncorrectUsage = int("-1862270706")
|
|
438
|
-
|
|
439
|
-
ntfLDS_SI_Storage_RI_DomainParams_MultipleEntries = int("-1862270705")
|
|
440
|
-
|
|
441
|
-
ntfLDS_SI_Storage_PACEInfos_NonConsistant = int("-1862270704")
|
|
442
|
-
|
|
443
|
-
ntfLDS_CVCertificate_Profile_IncorrectVersion = int("-1862270463")
|
|
444
|
-
|
|
445
|
-
ntfLDS_CVCertificate_Validity = int("-1862270462")
|
|
446
|
-
|
|
447
|
-
ntfLDS_CVCertificate_NonCVCADomainParameters = int("-1862270461")
|
|
448
|
-
|
|
449
|
-
ntfLDS_CV_Certificate_PrivateKey_IncorrectVersion = int("-1862270460")
|
|
450
|
-
|
|
451
|
-
ntfLDS_TA_PACEStaticBindingUsed = int("-1862270208")
|
|
452
|
-
|
|
453
|
-
ntfLDS_Auth_MLSignerInfo_Certificate_Validity = int("-1845493483")
|
|
454
|
-
|
|
455
|
-
ntfLDS_Auth_MLSignerInfo_Certificate_RootIsNotTrusted = int("-1845493482")
|
|
456
|
-
|
|
457
|
-
ntfLDS_Auth_MLSignerInfo_Certificate_CantFindCSCA = int("-1845493481")
|
|
458
|
-
|
|
459
|
-
ntfLDS_Auth_MLSignerInfo_Certificate_Revoked = int("-1845493480")
|
|
460
|
-
|
|
461
|
-
ntfLDS_Auth_MLSignerInfo_Certificate_SignatureInvalid = int("-1845493479")
|
|
462
|
-
|
|
463
|
-
ntfLDS_ICAO_Certificate_Chain_Country_NonMatching = int("-1879047600")
|
|
464
|
-
|
|
465
|
-
ntfLDS_ICAO_Certificate_VisualMrz_Country_NonMatching = int("-1879047599")
|
|
466
|
-
|
|
467
|
-
ntfLDS_MRZ_CountryCode_VisualMrz_NonMatching = int("139289")
|
|
468
|
-
|
|
469
|
-
ntfLDS_ICAO_Certificate_MRZ_Country_NonMatching = int("-1879047598")
|
|
470
|
-
|
|
471
|
-
allowable_values = [ntfLDS_ASN_Certificate_IncorrectVersion, ntfLDS_ASN_Certificate_NonMatchingSignatureAlgorithm, ntfLDS_ASN_Certificate_IncorrectTimeCoding, ntfLDS_ASN_Certificate_IncorrectUseOfGeneralizedTime, ntfLDS_ASN_Certificate_EmptyIssuer, ntfLDS_ASN_Certificate_EmptySubject, ntfLDS_ASN_Certificate_UnsupportedCriticalExtension, ntfLDS_ASN_Certificate_ForcedDefaultCSCARole, ntfLDS_ASN_Certificate_ForcedDefaultDSRole, ntfLDS_ASN_Certificate_IncorrectIssuerSubjectDS, ntfLDS_ASN_Certificate_DuplicatingExtensions, ntfLDS_ICAO_Certificate_Version_Missed, ntfLDS_ICAO_Certificate_Version_Incorrect, ntfLDS_ICAO_Certificate_Issuer_Country_Missed, ntfLDS_ICAO_Certificate_Issuer_CommonName_Missed, ntfLDS_ICAO_Certificate_Issuer_CountryNonCompliant, ntfLDS_ICAO_Certificate_Subject_Country_Missed, ntfLDS_ICAO_Certificate_Subject_CommonName_Missed, ntfLDS_ICAO_Certificate_Subject_CountryNonCompliant, ntfLDS_ICAO_Certificate_UsingNonCompliantData, ntfLDS_ICAO_Certificate_UnsupportedSignatureAlgorithm, ntfLDS_ICAO_Certificate_UnsupportedPublicKeyAlgorithm, ntfLDS_ICAO_Certificate_MissedExtensions, ntfLDS_ICAO_Certificate_Validity, ntfLDS_ICAO_Certificate_Ext_UsingNonCompliantData, ntfLDS_ICAO_Certificate_Ext_KeyUsage_Missed, ntfLDS_ICAO_Certificate_Ext_KeyUsage_NotCritical, ntfLDS_ICAO_Certificate_Ext_KeyUsage_IncorrectData, ntfLDS_ICAO_Certificate_Ext_BasicC_Missed, ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectUsage1, ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectUsage2, ntfLDS_ICAO_Certificate_Ext_BasicC_NotCritical, ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectData, ntfLDS_ICAO_Certificate_Ext_BasicC_PathLenC_Missed, ntfLDS_ICAO_Certificate_Ext_BasicC_PathLenC_Incorrect, ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_NotCritical, ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_IncorrectUsage, ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_IncorrectData, ntfLDS_ICAO_Certificate_Ext_AuthKeyID_Missed, ntfLDS_ICAO_Certificate_Ext_AuthKeyID_IncorrectData, ntfLDS_ICAO_Certificate_Ext_AuthKeyID_KeyID_Missed, ntfLDS_ICAO_Certificate_Ext_SubjectKeyID_Missed, ntfLDS_ICAO_Certificate_Ext_SubjectKeyID_IncorrectData, ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_Missed, ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_IncorrectData, ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_Empty, ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Missed, ntfLDS_ICAO_Certificate_Ext_SubjectAltName_IncorrectData, ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Empty, ntfLDS_ICAO_Certificate_Ext_SubjectAltName_NonCompliant, ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Critical, ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_Empty, ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_Incorrect, ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_NonCompliant, ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Missed, ntfLDS_ICAO_Certificate_Ext_IssuerAltName_IncorrectData, ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Empty, ntfLDS_ICAO_Certificate_Ext_IssuerAltName_NonCompliant, ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Critical, ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_Empty, ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_Incorrect, ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_NonCompliant, ntfLDS_ICAO_Certificate_Ext_DocTypeList_Missed, ntfLDS_ICAO_Certificate_Ext_DocTypeList_IncorrectData, ntfLDS_ICAO_Certificate_Ext_DocTypeList_Version, ntfLDS_ICAO_Certificate_Ext_DocTypeList_DocTypes, ntfLDS_ICAO_Certificate_Ext_DocTypeList_DocTypes_Empty, ntfLDS_ICAO_Certificate_Ext_CertPolicies_IncorrectData, ntfLDS_ICAO_Certificate_Ext_CertPolicies_Empty, ntfLDS_ICAO_Certificate_Ext_CertPolicies_PolicyID_Missed, ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_Missed, ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_IncorrectData, ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_Empty, ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_PointMissed, ntfLDS_ICAO_Certificate_SN_NonCompliant, ntfLDS_ICAO_Certificate_Issuer_SN_NonCompliant, ntfLDS_ICAO_Certificate_Subject_SN_NonCompliant, ntfLDS_ICAO_Certificate_Issuer_AttributeNonCompliant, ntfLDS_ICAO_Certificate_Subject_AttributeNonCompliant, ntfLDS_ICAO_Certificate_IssuerSubject_Country_NonMatching, ntfLDS_ICAO_Certificate_Ext_CSCA_AltNames_NonMatching, ntfLDS_ICAO_Certificate_Ext_NameChange_IncorrectData, ntfLDS_ICAO_Certificate_Ext_NameChange_NonCompliant, ntfLDS_ICAO_Certificate_Ext_NameChange_Critical, ntfLDS_ICAO_Certificate_Ext_DocTypeList_NonCompliant, ntfLDS_ICAO_Certificate_Ext_DocTypeList_Critical, ntfLDS_ICAO_Certificate_Ext_Optional_Critical, ntfLDS_ICAO_Certificate_Subject_NonCompliant, ntfLDS_ICAO_Certificate_Subject_CommonNameNonCompliant, ntfLDS_ICAO_COM_LDS_Version_Incorrect, ntfLDS_ICAO_COM_LDS_Version_Missing, ntfLDS_ICAO_COM_Unicode_Version_Incorrect, ntfLDS_ICAO_COM_Unicode_Version_Missing, ntfLDS_ICAO_COM_DGPM_Incorrect, ntfLDS_ICAO_COM_DGPM_Missing, ntfLDS_ICAO_COM_DGPM_Unexpected, ntfLDS_ICAO_Application_LDSVersion_Unsupported, ntfLDS_ICAO_Application_UnicodeVersion_Unsupported, ntfLDS_ICAO_Application_LDSVersion_Inconsistent, ntfLDS_ICAO_Application_UnicodeVersion_Inconsistent, ntfLDS_ASN_SignedData_OID_Incorrect, ntfLDS_ASN_SignedData_Version_Incorrect, ntfLDS_ASN_SignedData_ContentOID_Incorrect, ntfLDS_ICAO_SignedData_Version_Incorrect, ntfLDS_ICAO_SignedData_DigestAlgorithms_Empty, ntfLDS_ICAO_SignedData_DigestAlgorithms_Unsupported, ntfLDS_ICAO_SignedData_SignerInfos_MultipleEntries, ntfLDS_ICAO_SignedData_Certificates_Missed, ntfLDS_ICAO_SignedData_Certificates_Empty, ntfLDS_ICAO_SignedData_CRLs_IncorrectUsage, ntfLDS_ICAO_LDSObject_IncorrectContentOID, ntfLDS_ICAO_LDSObject_DGNumber_Incorrect, ntfLDS_ICAO_LDSObject_DGHash_Missing, ntfLDS_ICAO_LDSObject_DGHash_Extra, ntfLDS_ICAO_LDSObject_Version_Incorrect, ntfLDS_ICAO_MasterList_Version_Incorrect, ntfLDS_ICAO_DeviationList_Version_Incorrect, ntfLDS_BSI_DefectList_Version_Incorrect, ntfLDS_BSI_BlackList_Version_Incorrect, ntfLDS_ASN_SignerInfo_Version_Incorrect, ntfLDS_ASN_SignerInfo_SID_IncorrectChoice, ntfLDS_ASN_SignerInfo_SID_DigestAlgorithmNotListed, ntfLDS_ASN_SignerInfo_MessageDigestAttr_Missing, ntfLDS_ASN_SignerInfo_MessageDigestAttr_Data, ntfLDS_ASN_SignerInfo_MessageDigestAttr_Value, ntfLDS_ASN_SignerInfo_ContentTypeAttr_Missing, ntfLDS_ASN_SignerInfo_ContentTypeAttr_Data, ntfLDS_ASN_SignerInfo_ContentTypeAttr_Value, ntfLDS_ASN_SignerInfo_SigningTimeAttr_Missing, ntfLDS_ASN_SignerInfo_SigningTimeAttr_Data, ntfLDS_ASN_SignerInfo_SigningTimeAttr_Value, ntfLDS_ASN_SignerInfo_ListContentDescriptionAttr_Missing, ntfLDS_ASN_SignerInfo_ListContentDescriptionAttr_Data, ntfLDS_Auth_SignerInfo_Certificate_Validity, ntfLDS_Auth_SignerInfo_Certificate_RootIsNotTrusted, ntfLDS_Auth_SignerInfo_Certificate_CantFindCSCA, ntfLDS_Auth_SignerInfo_Certificate_Revoked, ntfLDS_Auth_SignerInfo_Certificate_SignatureInvalid, ntfLDS_UnsupportedImageFormat, ntfLDS_MRZ_DocumentType_Unknown, ntfLDS_MRZ_IssuingState_SyntaxError, ntfLDS_MRZ_Name_IsVoid, ntfLDS_MRZ_Number_IncorrectChecksum, ntfLDS_MRZ_Nationality_SyntaxError, ntfLDS_MRZ_DOB_SyntaxError, ntfLDS_MRZ_DOB_Error, ntfLDS_MRZ_DOB_IncorrectChecksum, ntfLDS_MRZ_Sex_Incorrect, ntfLDS_MRZ_DOE_SyntaxError, ntfLDS_MRZ_DOE_Error, ntfLDS_MRZ_DOE_IncorrectChecksum, ntfLDS_MRZ_OptionalData_IncorrectChecksum, ntfLDS_MRZ_IncorrectChecksum, ntfLDS_MRZ_Incorrect, ntfLDS_Biometrics_FormatOwner_Missing, ntfLDS_Biometrics_FormatOwner_Incorrect, ntfLDS_Biometrics_FormatType_Missing, ntfLDS_Biometrics_FormatType_Incorrect, ntfLDS_Biometrics_Type_Incorrect, ntfLDS_Biometrics_SubType_Missing, ntfLDS_Biometrics_SubType_Incorrect, ntfLDS_Biometrics_BDB_Image_Missing, ntfLDS_Biometrics_BDB_FormatID_Incorrect, ntfLDS_Biometrics_BDB_Version_Incorrect, ntfLDS_Biometrics_BDB_DataLength_Incorrect, ntfLDS_Biometrics_BDB_Data_Gender, ntfLDS_Biometrics_BDB_Data_EyeColor, ntfLDS_Biometrics_BDB_Data_HairColor, ntfLDS_Biometrics_BDB_Data_PoseAngle_Yaw, ntfLDS_Biometrics_BDB_Data_PoseAngle_Pitch, ntfLDS_Biometrics_BDB_Data_PoseAngle_Roll, ntfLDS_Biometrics_BDB_Data_PoseAngleU_Yaw, ntfLDS_Biometrics_BDB_Data_PoseAngleU_Pitch, ntfLDS_Biometrics_BDB_Data_PoseAngleU_Roll, ntfLDS_Biometrics_BDB_Data_FaceImageType, ntfLDS_Biometrics_BDB_Data_ImageDataType, ntfLDS_SI_PACE_Info_UnsupportedStdParameters, ntfLDS_SI_PACE_Info_DeprecatedVersion, ntfLDS_SI_PACE_DomainParams_UsingStdRef, ntfLDS_SI_PACE_DomainParams_UnsupportedAlgorithm, ntfLDS_SI_CA_Info_IncorrectVersion, ntfLDS_SI_CA_PublicKey_UnsupportedAlgorithm, ntfLDS_SI_CA_DomainParams_UnsupportedAlgorithm, ntfLDS_SI_TA_Info_IncorrectVersion, ntfLDS_SI_TA_Info_FileIDForVersion2, ntfLDS_SI_eIDSecurity_UnsupportedDigestAlgorithm, ntfLDS_SI_RI_Info_IncorrectVersion, ntfLDS_SI_RI_DomainParams_UnsupportedAlgorithm, ntfLDS_SI_AA_Info_IncorrectVersion, ntfLDS_SI_AA_Info_UnsupportedAlgorithm, ntfLDS_SI_AA_Info_InconsistentAlgorithmReference, ntfLDS_SI_Storage_PACE_Info_NotAvailable, ntfLDS_SI_Storage_PACE_Info_NoStdParameters, ntfLDS_SI_Storage_PACE_Info_NoMatchingDomainParams, ntfLDS_SI_Storage_CA_Info_NotAvailable, ntfLDS_SI_Storage_CA_DomainParams_NoRequiredOption, ntfLDS_SI_Storage_CA_DomainParams_NotAvailable, ntfLDS_SI_Storage_CA_AnonymousInfos, ntfLDS_SI_Storage_CA_Info_NoMatchingDomainParams, ntfLDS_SI_Storage_CA_Info_NoMatchingPublicKey, ntfLDS_SI_Storage_CA_IncorrectInfosQuantity, ntfLDS_SI_Storage_TA_Info_NotAvailable, ntfLDS_SI_Storage_CardInfoLocator_MultipleEntries, ntfLDS_SI_Storage_eIDSecurityInfo_MultipleEntries, ntfLDS_SI_Storage_PrivilegedTI_MultipleEntries, ntfLDS_SI_Storage_PrivilegedTI_IncorrectUsage, ntfLDS_SI_Storage_RI_DomainParams_MultipleEntries, ntfLDS_SI_Storage_PACEInfos_NonConsistant, ntfLDS_CVCertificate_Profile_IncorrectVersion, ntfLDS_CVCertificate_Validity, ntfLDS_CVCertificate_NonCVCADomainParameters, ntfLDS_CV_Certificate_PrivateKey_IncorrectVersion, ntfLDS_TA_PACEStaticBindingUsed, ntfLDS_Auth_MLSignerInfo_Certificate_Validity, ntfLDS_Auth_MLSignerInfo_Certificate_RootIsNotTrusted, ntfLDS_Auth_MLSignerInfo_Certificate_CantFindCSCA, ntfLDS_Auth_MLSignerInfo_Certificate_Revoked, ntfLDS_Auth_MLSignerInfo_Certificate_SignatureInvalid, ntfLDS_ICAO_Certificate_Chain_Country_NonMatching, ntfLDS_ICAO_Certificate_VisualMrz_Country_NonMatching, ntfLDS_MRZ_CountryCode_VisualMrz_NonMatching, ntfLDS_ICAO_Certificate_MRZ_Country_NonMatching] # noqa: E501
|
|
472
17
|
|
|
473
18
|
"""
|
|
474
|
-
|
|
475
|
-
openapi_types (dict): The key is attribute name
|
|
476
|
-
and the value is attribute type.
|
|
477
|
-
attribute_map (dict): The key is attribute name
|
|
478
|
-
and the value is json key in definition.
|
|
19
|
+
allowed enum values
|
|
479
20
|
"""
|
|
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
|
-
|
|
21
|
+
ntfLDS_ASN_Certificate_IncorrectVersion = 2415919105
|
|
22
|
+
ntfLDS_ASN_Certificate_NonMatchingSignatureAlgorithm = 2415919106
|
|
23
|
+
ntfLDS_ASN_Certificate_IncorrectTimeCoding = 2415919107
|
|
24
|
+
ntfLDS_ASN_Certificate_IncorrectUseOfGeneralizedTime = 2415919108
|
|
25
|
+
ntfLDS_ASN_Certificate_EmptyIssuer = 2415919109
|
|
26
|
+
ntfLDS_ASN_Certificate_EmptySubject = 2415919110
|
|
27
|
+
ntfLDS_ASN_Certificate_UnsupportedCriticalExtension = 2415919112
|
|
28
|
+
ntfLDS_ASN_Certificate_ForcedDefaultCSCARole = 2415919118
|
|
29
|
+
ntfLDS_ASN_Certificate_ForcedDefaultDSRole = 2415919119
|
|
30
|
+
ntfLDS_ASN_Certificate_IncorrectIssuerSubjectDS = 2415919120
|
|
31
|
+
ntfLDS_ASN_Certificate_DuplicatingExtensions = 2415919127
|
|
32
|
+
ntfLDS_ICAO_Certificate_Version_Missed = 2415919616
|
|
33
|
+
ntfLDS_ICAO_Certificate_Version_Incorrect = 2415919617
|
|
34
|
+
ntfLDS_ICAO_Certificate_Issuer_Country_Missed = 2415919618
|
|
35
|
+
ntfLDS_ICAO_Certificate_Issuer_CommonName_Missed = 2415919619
|
|
36
|
+
ntfLDS_ICAO_Certificate_Issuer_CountryNonCompliant = 2415919620
|
|
37
|
+
ntfLDS_ICAO_Certificate_Subject_Country_Missed = 2415919621
|
|
38
|
+
ntfLDS_ICAO_Certificate_Subject_CommonName_Missed = 2415919622
|
|
39
|
+
ntfLDS_ICAO_Certificate_Subject_CountryNonCompliant = 2415919623
|
|
40
|
+
ntfLDS_ICAO_Certificate_UsingNonCompliantData = 2415919624
|
|
41
|
+
ntfLDS_ICAO_Certificate_UnsupportedSignatureAlgorithm = 2415919625
|
|
42
|
+
ntfLDS_ICAO_Certificate_UnsupportedPublicKeyAlgorithm = 2415919626
|
|
43
|
+
ntfLDS_ICAO_Certificate_MissedExtensions = 2415919627
|
|
44
|
+
ntfLDS_ICAO_Certificate_Validity = 2415919628
|
|
45
|
+
ntfLDS_ICAO_Certificate_Ext_UsingNonCompliantData = 2415919629
|
|
46
|
+
ntfLDS_ICAO_Certificate_Ext_KeyUsage_Missed = 2415919630
|
|
47
|
+
ntfLDS_ICAO_Certificate_Ext_KeyUsage_NotCritical = 2415919631
|
|
48
|
+
ntfLDS_ICAO_Certificate_Ext_KeyUsage_IncorrectData = 2415919632
|
|
49
|
+
ntfLDS_ICAO_Certificate_Ext_BasicC_Missed = 2415919633
|
|
50
|
+
ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectUsage1 = 2415919634
|
|
51
|
+
ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectUsage2 = 2415919635
|
|
52
|
+
ntfLDS_ICAO_Certificate_Ext_BasicC_NotCritical = 2415919636
|
|
53
|
+
ntfLDS_ICAO_Certificate_Ext_BasicC_IncorrectData = 2415919637
|
|
54
|
+
ntfLDS_ICAO_Certificate_Ext_BasicC_PathLenC_Missed = 2415919638
|
|
55
|
+
ntfLDS_ICAO_Certificate_Ext_BasicC_PathLenC_Incorrect = 2415919639
|
|
56
|
+
ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_NotCritical = 2415919640
|
|
57
|
+
ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_IncorrectUsage = 2415919641
|
|
58
|
+
ntfLDS_ICAO_Certificate_Ext_ExtKeyUsage_IncorrectData = 2415919642
|
|
59
|
+
ntfLDS_ICAO_Certificate_Ext_AuthKeyID_Missed = 2415919643
|
|
60
|
+
ntfLDS_ICAO_Certificate_Ext_AuthKeyID_IncorrectData = 2415919644
|
|
61
|
+
ntfLDS_ICAO_Certificate_Ext_AuthKeyID_KeyID_Missed = 2415919645
|
|
62
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectKeyID_Missed = 2415919646
|
|
63
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectKeyID_IncorrectData = 2415919647
|
|
64
|
+
ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_Missed = 2415919648
|
|
65
|
+
ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_IncorrectData = 2415919649
|
|
66
|
+
ntfLDS_ICAO_Certificate_Ext_PrivateKeyUP_Empty = 2415919650
|
|
67
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Missed = 2415919651
|
|
68
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_IncorrectData = 2415919652
|
|
69
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Empty = 2415919653
|
|
70
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_NonCompliant = 2415919654
|
|
71
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_Critical = 2415919656
|
|
72
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_Empty = 2415919657
|
|
73
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_Incorrect = 2415919658
|
|
74
|
+
ntfLDS_ICAO_Certificate_Ext_SubjectAltName_DN_NonCompliant = 2415919659
|
|
75
|
+
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Missed = 2415919660
|
|
76
|
+
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_IncorrectData = 2415919661
|
|
77
|
+
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Empty = 2415919662
|
|
78
|
+
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_NonCompliant = 2415919663
|
|
79
|
+
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_Critical = 2415919665
|
|
80
|
+
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_Empty = 2415919666
|
|
81
|
+
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_Incorrect = 2415919667
|
|
82
|
+
ntfLDS_ICAO_Certificate_Ext_IssuerAltName_DN_NonCompliant = 2415919668
|
|
83
|
+
ntfLDS_ICAO_Certificate_Ext_DocTypeList_Missed = 2415919669
|
|
84
|
+
ntfLDS_ICAO_Certificate_Ext_DocTypeList_IncorrectData = 2415919670
|
|
85
|
+
ntfLDS_ICAO_Certificate_Ext_DocTypeList_Version = 2415919671
|
|
86
|
+
ntfLDS_ICAO_Certificate_Ext_DocTypeList_DocTypes = 2415919672
|
|
87
|
+
ntfLDS_ICAO_Certificate_Ext_DocTypeList_DocTypes_Empty = 2415919673
|
|
88
|
+
ntfLDS_ICAO_Certificate_Ext_CertPolicies_IncorrectData = 2415919674
|
|
89
|
+
ntfLDS_ICAO_Certificate_Ext_CertPolicies_Empty = 2415919675
|
|
90
|
+
ntfLDS_ICAO_Certificate_Ext_CertPolicies_PolicyID_Missed = 2415919676
|
|
91
|
+
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_Missed = 2415919677
|
|
92
|
+
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_IncorrectData = 2415919678
|
|
93
|
+
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_Empty = 2415919679
|
|
94
|
+
ntfLDS_ICAO_Certificate_Ext_CRLDistPoint_PointMissed = 2415919680
|
|
95
|
+
ntfLDS_ICAO_Certificate_SN_NonCompliant = 2415919681
|
|
96
|
+
ntfLDS_ICAO_Certificate_Issuer_SN_NonCompliant = 2415919682
|
|
97
|
+
ntfLDS_ICAO_Certificate_Subject_SN_NonCompliant = 2415919683
|
|
98
|
+
ntfLDS_ICAO_Certificate_Issuer_AttributeNonCompliant = 2415919684
|
|
99
|
+
ntfLDS_ICAO_Certificate_Subject_AttributeNonCompliant = 2415919685
|
|
100
|
+
ntfLDS_ICAO_Certificate_IssuerSubject_Country_NonMatching = 2415919686
|
|
101
|
+
ntfLDS_ICAO_Certificate_Ext_CSCA_AltNames_NonMatching = 2415919687
|
|
102
|
+
ntfLDS_ICAO_Certificate_Ext_NameChange_IncorrectData = 2415919688
|
|
103
|
+
ntfLDS_ICAO_Certificate_Ext_NameChange_NonCompliant = 2415919689
|
|
104
|
+
ntfLDS_ICAO_Certificate_Ext_NameChange_Critical = 2415919690
|
|
105
|
+
ntfLDS_ICAO_Certificate_Ext_DocTypeList_NonCompliant = 2415919691
|
|
106
|
+
ntfLDS_ICAO_Certificate_Ext_DocTypeList_Critical = 2415919692
|
|
107
|
+
ntfLDS_ICAO_Certificate_Ext_Optional_Critical = 2415919693
|
|
108
|
+
ntfLDS_ICAO_Certificate_Subject_NonCompliant = 2415919694
|
|
109
|
+
ntfLDS_ICAO_Certificate_Subject_CommonNameNonCompliant = 2415919695
|
|
110
|
+
ntfLDS_ICAO_COM_LDS_Version_Incorrect = 2415919136
|
|
111
|
+
ntfLDS_ICAO_COM_LDS_Version_Missing = 2415919137
|
|
112
|
+
ntfLDS_ICAO_COM_Unicode_Version_Incorrect = 2415919138
|
|
113
|
+
ntfLDS_ICAO_COM_Unicode_Version_Missing = 2415919139
|
|
114
|
+
ntfLDS_ICAO_COM_DGPM_Incorrect = 2415919140
|
|
115
|
+
ntfLDS_ICAO_COM_DGPM_Missing = 2415919141
|
|
116
|
+
ntfLDS_ICAO_COM_DGPM_Unexpected = 2415919142
|
|
117
|
+
ntfLDS_ICAO_Application_LDSVersion_Unsupported = 2415919152
|
|
118
|
+
ntfLDS_ICAO_Application_UnicodeVersion_Unsupported = 2415919153
|
|
119
|
+
ntfLDS_ICAO_Application_LDSVersion_Inconsistent = 2415919154
|
|
120
|
+
ntfLDS_ICAO_Application_UnicodeVersion_Inconsistent = 2415919155
|
|
121
|
+
ntfLDS_ASN_SignedData_OID_Incorrect = 2415919360
|
|
122
|
+
ntfLDS_ASN_SignedData_Version_Incorrect = 2415919520
|
|
123
|
+
ntfLDS_ASN_SignedData_ContentOID_Incorrect = 2415919521
|
|
124
|
+
ntfLDS_ICAO_SignedData_Version_Incorrect = 2415919361
|
|
125
|
+
ntfLDS_ICAO_SignedData_DigestAlgorithms_Empty = 2415919362
|
|
126
|
+
ntfLDS_ICAO_SignedData_DigestAlgorithms_Unsupported = 2415919363
|
|
127
|
+
ntfLDS_ICAO_SignedData_SignerInfos_MultipleEntries = 2415919369
|
|
128
|
+
ntfLDS_ICAO_SignedData_Certificates_Missed = 2415919536
|
|
129
|
+
ntfLDS_ICAO_SignedData_Certificates_Empty = 2415919537
|
|
130
|
+
ntfLDS_ICAO_SignedData_CRLs_IncorrectUsage = 2415919538
|
|
131
|
+
ntfLDS_ICAO_LDSObject_IncorrectContentOID = 2415919364
|
|
132
|
+
ntfLDS_ICAO_LDSObject_DGNumber_Incorrect = 2415919365
|
|
133
|
+
ntfLDS_ICAO_LDSObject_DGHash_Missing = 2415919366
|
|
134
|
+
ntfLDS_ICAO_LDSObject_DGHash_Extra = 2415919367
|
|
135
|
+
ntfLDS_ICAO_LDSObject_Version_Incorrect = 2415919368
|
|
136
|
+
ntfLDS_ICAO_MasterList_Version_Incorrect = 2415919552
|
|
137
|
+
ntfLDS_ICAO_DeviationList_Version_Incorrect = 2415919560
|
|
138
|
+
ntfLDS_BSI_DefectList_Version_Incorrect = 2415919568
|
|
139
|
+
ntfLDS_BSI_BlackList_Version_Incorrect = 2415919576
|
|
140
|
+
ntfLDS_ASN_SignerInfo_Version_Incorrect = 2415919370
|
|
141
|
+
ntfLDS_ASN_SignerInfo_SID_IncorrectChoice = 2415919371
|
|
142
|
+
ntfLDS_ASN_SignerInfo_SID_DigestAlgorithmNotListed = 2415919372
|
|
143
|
+
ntfLDS_ASN_SignerInfo_MessageDigestAttr_Missing = 2415919373
|
|
144
|
+
ntfLDS_ASN_SignerInfo_MessageDigestAttr_Data = 2415919374
|
|
145
|
+
ntfLDS_ASN_SignerInfo_MessageDigestAttr_Value = 2415919375
|
|
146
|
+
ntfLDS_ASN_SignerInfo_ContentTypeAttr_Missing = 2415919376
|
|
147
|
+
ntfLDS_ASN_SignerInfo_ContentTypeAttr_Data = 2415919377
|
|
148
|
+
ntfLDS_ASN_SignerInfo_ContentTypeAttr_Value = 2415919378
|
|
149
|
+
ntfLDS_ASN_SignerInfo_SigningTimeAttr_Missing = 2415919387
|
|
150
|
+
ntfLDS_ASN_SignerInfo_SigningTimeAttr_Data = 2415919388
|
|
151
|
+
ntfLDS_ASN_SignerInfo_SigningTimeAttr_Value = 2415919389
|
|
152
|
+
ntfLDS_ASN_SignerInfo_ListContentDescriptionAttr_Missing = 2415919390
|
|
153
|
+
ntfLDS_ASN_SignerInfo_ListContentDescriptionAttr_Data = 2415919391
|
|
154
|
+
ntfLDS_Auth_SignerInfo_Certificate_Validity = 2415919381
|
|
155
|
+
ntfLDS_Auth_SignerInfo_Certificate_RootIsNotTrusted = 2415919382
|
|
156
|
+
ntfLDS_Auth_SignerInfo_Certificate_CantFindCSCA = 2415919383
|
|
157
|
+
ntfLDS_Auth_SignerInfo_Certificate_Revoked = 2415919384
|
|
158
|
+
ntfLDS_Auth_SignerInfo_Certificate_SignatureInvalid = 2415919385
|
|
159
|
+
ntfLDS_UnsupportedImageFormat = 2415919386
|
|
160
|
+
ntfLDS_MRZ_DocumentType_Unknown = 139272
|
|
161
|
+
ntfLDS_MRZ_IssuingState_SyntaxError = 139273
|
|
162
|
+
ntfLDS_MRZ_Name_IsVoid = 139274
|
|
163
|
+
ntfLDS_MRZ_Number_IncorrectChecksum = 139277
|
|
164
|
+
ntfLDS_MRZ_Nationality_SyntaxError = 139278
|
|
165
|
+
ntfLDS_MRZ_DOB_SyntaxError = 139279
|
|
166
|
+
ntfLDS_MRZ_DOB_Error = 139280
|
|
167
|
+
ntfLDS_MRZ_DOB_IncorrectChecksum = 139281
|
|
168
|
+
ntfLDS_MRZ_Sex_Incorrect = 139282
|
|
169
|
+
ntfLDS_MRZ_DOE_SyntaxError = 139283
|
|
170
|
+
ntfLDS_MRZ_DOE_Error = 139284
|
|
171
|
+
ntfLDS_MRZ_DOE_IncorrectChecksum = 139285
|
|
172
|
+
ntfLDS_MRZ_OptionalData_IncorrectChecksum = 139286
|
|
173
|
+
ntfLDS_MRZ_IncorrectChecksum = 139287
|
|
174
|
+
ntfLDS_MRZ_Incorrect = 139288
|
|
175
|
+
ntfLDS_Biometrics_FormatOwner_Missing = 2415984640
|
|
176
|
+
ntfLDS_Biometrics_FormatOwner_Incorrect = 2416050176
|
|
177
|
+
ntfLDS_Biometrics_FormatType_Missing = 2416115712
|
|
178
|
+
ntfLDS_Biometrics_FormatType_Incorrect = 2416181248
|
|
179
|
+
ntfLDS_Biometrics_Type_Incorrect = 2416246784
|
|
180
|
+
ntfLDS_Biometrics_SubType_Missing = 2416312320
|
|
181
|
+
ntfLDS_Biometrics_SubType_Incorrect = 2416377856
|
|
182
|
+
ntfLDS_Biometrics_BDB_Image_Missing = 2416443392
|
|
183
|
+
ntfLDS_Biometrics_BDB_FormatID_Incorrect = 2416508928
|
|
184
|
+
ntfLDS_Biometrics_BDB_Version_Incorrect = 2416574464
|
|
185
|
+
ntfLDS_Biometrics_BDB_DataLength_Incorrect = 2416640000
|
|
186
|
+
ntfLDS_Biometrics_BDB_Data_Gender = 2416967680
|
|
187
|
+
ntfLDS_Biometrics_BDB_Data_EyeColor = 2417033216
|
|
188
|
+
ntfLDS_Biometrics_BDB_Data_HairColor = 2417098752
|
|
189
|
+
ntfLDS_Biometrics_BDB_Data_PoseAngle_Yaw = 2417164288
|
|
190
|
+
ntfLDS_Biometrics_BDB_Data_PoseAngle_Pitch = 2417229824
|
|
191
|
+
ntfLDS_Biometrics_BDB_Data_PoseAngle_Roll = 2417295360
|
|
192
|
+
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Yaw = 2417360896
|
|
193
|
+
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Pitch = 2417426432
|
|
194
|
+
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Roll = 2417491968
|
|
195
|
+
ntfLDS_Biometrics_BDB_Data_FaceImageType = 2417557504
|
|
196
|
+
ntfLDS_Biometrics_BDB_Data_ImageDataType = 2417623040
|
|
197
|
+
ntfLDS_SI_PACE_Info_UnsupportedStdParameters = 2432696320
|
|
198
|
+
ntfLDS_SI_PACE_Info_DeprecatedVersion = 2432696321
|
|
199
|
+
ntfLDS_SI_PACE_DomainParams_UsingStdRef = 2432696322
|
|
200
|
+
ntfLDS_SI_PACE_DomainParams_UnsupportedAlgorithm = 2432696323
|
|
201
|
+
ntfLDS_SI_CA_Info_IncorrectVersion = 2432696324
|
|
202
|
+
ntfLDS_SI_CA_PublicKey_UnsupportedAlgorithm = 2432696325
|
|
203
|
+
ntfLDS_SI_CA_DomainParams_UnsupportedAlgorithm = 2432696326
|
|
204
|
+
ntfLDS_SI_TA_Info_IncorrectVersion = 2432696327
|
|
205
|
+
ntfLDS_SI_TA_Info_FileIDForVersion2 = 2432696328
|
|
206
|
+
ntfLDS_SI_eIDSecurity_UnsupportedDigestAlgorithm = 2432696329
|
|
207
|
+
ntfLDS_SI_RI_Info_IncorrectVersion = 2432696330
|
|
208
|
+
ntfLDS_SI_RI_DomainParams_UnsupportedAlgorithm = 2432696331
|
|
209
|
+
ntfLDS_SI_AA_Info_IncorrectVersion = 2432696332
|
|
210
|
+
ntfLDS_SI_AA_Info_UnsupportedAlgorithm = 2432696333
|
|
211
|
+
ntfLDS_SI_AA_Info_InconsistentAlgorithmReference = 2432696334
|
|
212
|
+
ntfLDS_SI_Storage_PACE_Info_NotAvailable = 2432696576
|
|
213
|
+
ntfLDS_SI_Storage_PACE_Info_NoStdParameters = 2432696577
|
|
214
|
+
ntfLDS_SI_Storage_PACE_Info_NoMatchingDomainParams = 2432696578
|
|
215
|
+
ntfLDS_SI_Storage_CA_Info_NotAvailable = 2432696579
|
|
216
|
+
ntfLDS_SI_Storage_CA_DomainParams_NoRequiredOption = 2432696580
|
|
217
|
+
ntfLDS_SI_Storage_CA_DomainParams_NotAvailable = 2432696581
|
|
218
|
+
ntfLDS_SI_Storage_CA_AnonymousInfos = 2432696582
|
|
219
|
+
ntfLDS_SI_Storage_CA_Info_NoMatchingDomainParams = 2432696583
|
|
220
|
+
ntfLDS_SI_Storage_CA_Info_NoMatchingPublicKey = 2432696584
|
|
221
|
+
ntfLDS_SI_Storage_CA_IncorrectInfosQuantity = 2432696585
|
|
222
|
+
ntfLDS_SI_Storage_TA_Info_NotAvailable = 2432696586
|
|
223
|
+
ntfLDS_SI_Storage_CardInfoLocator_MultipleEntries = 2432696587
|
|
224
|
+
ntfLDS_SI_Storage_eIDSecurityInfo_MultipleEntries = 2432696588
|
|
225
|
+
ntfLDS_SI_Storage_PrivilegedTI_MultipleEntries = 2432696589
|
|
226
|
+
ntfLDS_SI_Storage_PrivilegedTI_IncorrectUsage = 2432696590
|
|
227
|
+
ntfLDS_SI_Storage_RI_DomainParams_MultipleEntries = 2432696591
|
|
228
|
+
ntfLDS_SI_Storage_PACEInfos_NonConsistant = 2432696592
|
|
229
|
+
ntfLDS_CVCertificate_Profile_IncorrectVersion = 2432696833
|
|
230
|
+
ntfLDS_CVCertificate_Validity = 2432696834
|
|
231
|
+
ntfLDS_CVCertificate_NonCVCADomainParameters = 2432696835
|
|
232
|
+
ntfLDS_CV_Certificate_PrivateKey_IncorrectVersion = 2432696836
|
|
233
|
+
ntfLDS_TA_PACEStaticBindingUsed = 2432697088
|
|
234
|
+
ntfLDS_Auth_MLSignerInfo_Certificate_Validity = 2449473813
|
|
235
|
+
ntfLDS_Auth_MLSignerInfo_Certificate_RootIsNotTrusted = 2449473814
|
|
236
|
+
ntfLDS_Auth_MLSignerInfo_Certificate_CantFindCSCA = 2449473815
|
|
237
|
+
ntfLDS_Auth_MLSignerInfo_Certificate_Revoked = 2449473816
|
|
238
|
+
ntfLDS_Auth_MLSignerInfo_Certificate_SignatureInvalid = 2449473817
|
|
239
|
+
ntfLDS_ICAO_Certificate_Chain_Country_NonMatching = 2415919696
|
|
240
|
+
ntfLDS_ICAO_Certificate_VisualMrz_Country_NonMatching = 2415919697
|
|
241
|
+
ntfLDS_MRZ_CountryCode_VisualMrz_NonMatching = 139289
|
|
242
|
+
ntfLDS_ICAO_Certificate_MRZ_Country_NonMatching = 2415919698
|
|
243
|
+
ntfLDS_ICAO_Certificate_Issuer_CountryNonUpperCase = 2415919699
|
|
244
|
+
ntfLDS_ICAO_Certificate_Subject_CountryNonUpperCase = 2415919700
|
|
245
|
+
|
|
246
|
+
@classmethod
|
|
247
|
+
def from_json(cls, json_str: str) -> Self:
|
|
248
|
+
"""Create an instance of ParsingNotificationCodes from a JSON string"""
|
|
249
|
+
return cls(json.loads(json_str))
|
|
531
250
|
|
|
532
|
-
def __ne__(self, other):
|
|
533
|
-
"""Returns true if both objects are not equal"""
|
|
534
|
-
if not isinstance(other, ParsingNotificationCodes):
|
|
535
|
-
return True
|
|
536
251
|
|
|
537
|
-
return self.to_dict() != other.to_dict()
|