V2reportsError

June 23, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
assembly_error_codeV2reportsErrorAssemblyErrorCode[optional] [default to V2reportsErrorAssemblyErrorCode.UNKNOWN_ASSEMBLY_ERROR_CODE]
gene_error_codeV2reportsErrorGeneErrorCode[optional] [default to V2reportsErrorGeneErrorCode.UNKNOWN_GENE_ERROR_CODE]
organelle_error_codeV2reportsErrorOrganelleErrorCode[optional] [default to V2reportsErrorOrganelleErrorCode.UNKNOWN_ORGANELLE_ERROR_CODE]
virus_error_codeV2reportsErrorVirusErrorCode[optional] [default to V2reportsErrorVirusErrorCode.UNKNOWN_VIRUS_ERROR_CODE]
taxonomy_error_codeV2reportsErrorTaxonomyErrorCode[optional] [default to V2reportsErrorTaxonomyErrorCode.UNKNOWN_TAXONOMY_ERROR_CODE]
sequence_error_codeV2reportsErrorSequenceErrorCode[optional] [default to V2reportsErrorSequenceErrorCode.UNKNOWN_SEQUENCE_ERROR_CODE]
reasonstr[optional]
messagestr[optional]
invalid_identifiersList[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)

[Back to Model list] [Back to API list] [Back to README]