Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

SearchObjectThumbnail

A small image that can be displayed along side the serach result.

Properties

Name Type Description Notes
url str URL of the thumbnail [optional]
height int hight of the thumbnail [optional]
width int width of the thumbnail [optional]

Example

from openapi_client.models.search_object_thumbnail import SearchObjectThumbnail

# TODO update the JSON string below
json = "{}"
# create an instance of SearchObjectThumbnail from a JSON string
search_object_thumbnail_instance = SearchObjectThumbnail.from_json(json)
# print the JSON string representation of the object
print(SearchObjectThumbnail.to_json())

# convert the object into a dict
search_object_thumbnail_dict = search_object_thumbnail_instance.to_dict()
# create an instance of SearchObjectThumbnail from a dict
search_object_thumbnail_from_dict = SearchObjectThumbnail.from_dict(search_object_thumbnail_dict)

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