V2reportsError
June 23, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| assembly_error_code | V2reportsErrorAssemblyErrorCode | [optional] [default to V2reportsErrorAssemblyErrorCode.UNKNOWN_ASSEMBLY_ERROR_CODE] | |
| gene_error_code | V2reportsErrorGeneErrorCode | [optional] [default to V2reportsErrorGeneErrorCode.UNKNOWN_GENE_ERROR_CODE] | |
| organelle_error_code | V2reportsErrorOrganelleErrorCode | [optional] [default to V2reportsErrorOrganelleErrorCode.UNKNOWN_ORGANELLE_ERROR_CODE] | |
| virus_error_code | V2reportsErrorVirusErrorCode | [optional] [default to V2reportsErrorVirusErrorCode.UNKNOWN_VIRUS_ERROR_CODE] | |
| taxonomy_error_code | V2reportsErrorTaxonomyErrorCode | [optional] [default to V2reportsErrorTaxonomyErrorCode.UNKNOWN_TAXONOMY_ERROR_CODE] | |
| sequence_error_code | V2reportsErrorSequenceErrorCode | [optional] [default to V2reportsErrorSequenceErrorCode.UNKNOWN_SEQUENCE_ERROR_CODE] | |
| reason | str | [optional] | |
| message | str | [optional] | |
| invalid_identifiers | List[str] | [optional] |
Example
from ncbi.datasets.openapi.models.v2reports_error import V2reportsError
# TODO update the JSON string below
json = "{}"
# create an instance of V2reportsError from a JSON string
v2reports_error_instance = V2reportsError.from_json(json)
# print the JSON string representation of the object
print(V2reportsError.to_json())
# convert the object into a dict
v2reports_error_dict = v2reports_error_instance.to_dict()
# create an instance of V2reportsError from a dict
v2reports_error_from_dict = V2reportsError.from_dict(v2reports_error_dict)