Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 877 Bytes

File metadata and controls

31 lines (22 loc) · 877 Bytes

MediaSize

Properties

Name Type Description Notes
h int
resize str
w int

Example

from twitter_openapi_python_generated.models.media_size import MediaSize

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

# convert the object into a dict
media_size_dict = media_size_instance.to_dict()
# create an instance of MediaSize from a dict
media_size_from_dict = MediaSize.from_dict(media_size_dict)

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