An image that goes with the main resource. This could be a thumbnail of a video resource, Or a main image on an html resource
| Name | Type | Description | Notes |
|---|---|---|---|
| url | str | This is a URL that links directly to the image that goes with the resources. | |
| height | int | The height of the image. | [optional] |
| width | int | The width of the image. | [optional] |
from openapi_client.models.search_result_image import SearchResultImage
# TODO update the JSON string below
json = "{}"
# create an instance of SearchResultImage from a JSON string
search_result_image_instance = SearchResultImage.from_json(json)
# print the JSON string representation of the object
print(SearchResultImage.to_json())
# convert the object into a dict
search_result_image_dict = search_result_image_instance.to_dict()
# create an instance of SearchResultImage from a dict
search_result_image_from_dict = SearchResultImage.from_dict(search_result_image_dict)