Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1020 Bytes

File metadata and controls

31 lines (22 loc) · 1020 Bytes

ThumbnailImage

Properties

Name Type Description Notes
original_img_height int [optional]
original_img_url str [optional]
original_img_width int [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]