Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 940 Bytes

File metadata and controls

32 lines (23 loc) · 940 Bytes

Thumbnail

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec ThumbnailSpec

Example

from halo_client.models.thumbnail import Thumbnail

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

# convert the object into a dict
thumbnail_dict = thumbnail_instance.to_dict()
# create an instance of Thumbnail from a dict
thumbnail_from_dict = Thumbnail.from_dict(thumbnail_dict)

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