V2TaxonomyImageMetadataResponse
January 6, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| tax_id | str | [optional] | |
| src | str | [optional] | |
| license | str | [optional] | |
| attribution | str | [optional] | |
| source | str | [optional] | |
| image_sizes | List[V2ImageSize] | [optional] | |
| format | str | [optional] | |
| license_url | str | [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)