Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

SearchResultImage

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

Properties

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]

Example

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)

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