V2TaxonomyImageMetadataResponse

January 6, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
tax_idstr[optional]
srcstr[optional]
licensestr[optional]
attributionstr[optional]
sourcestr[optional]
image_sizesList[V2ImageSize][optional]
formatstr[optional]
license_urlstr[optional]

Example

from ncbi.datasets.openapi.models.v2_taxonomy_image_metadata_response import V2TaxonomyImageMetadataResponse

# TODO update the JSON string below
json = "{}"
# create an instance of V2TaxonomyImageMetadataResponse from a JSON string
v2_taxonomy_image_metadata_response_instance = V2TaxonomyImageMetadataResponse.from_json(json)
# print the JSON string representation of the object
print(V2TaxonomyImageMetadataResponse.to_json())

# convert the object into a dict
v2_taxonomy_image_metadata_response_dict = v2_taxonomy_image_metadata_response_instance.to_dict()
# create an instance of V2TaxonomyImageMetadataResponse from a dict
v2_taxonomy_image_metadata_response_from_dict = V2TaxonomyImageMetadataResponse.from_dict(v2_taxonomy_image_metadata_response_dict)

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