ThumbnailImage

March 11, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
original_img_heightint[optional]
original_img_urlstr[optional]
original_img_widthint[optional]

Example

from twitter_openapi_python_generated.models.thumbnail_image import ThumbnailImage

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

# convert the object into a dict
thumbnail_image_dict = thumbnail_image_instance.to_dict()
# create an instance of ThumbnailImage from a dict
thumbnail_image_from_dict = ThumbnailImage.from_dict(thumbnail_image_dict)

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