Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

SearchObjectImage

An image that is linked to the search result.

Properties

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]

Example

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)

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