An image that is linked to the search result.
| Name | Type | Description | Notes |
|---|---|---|---|
| url | str | URL of the image | [optional] |
| height | int | hight of the image | [optional] |
| width | int | width of the image | [optional] |
from openapi_client.models.search_object_image import SearchObjectImage
# TODO update the JSON string below
json = "{}"
# create an instance of SearchObjectImage from a JSON string
search_object_image_instance = SearchObjectImage.from_json(json)
# print the JSON string representation of the object
print(SearchObjectImage.to_json())
# convert the object into a dict
search_object_image_dict = search_object_image_instance.to_dict()
# create an instance of SearchObjectImage from a dict
search_object_image_from_dict = SearchObjectImage.from_dict(search_object_image_dict)