from twitter_openapi_python_generated.models.media_video_info import MediaVideoInfo
# TODO update the JSON string below
json = "{}"
# create an instance of MediaVideoInfo from a JSON string
media_video_info_instance = MediaVideoInfo.from_json(json)
# print the JSON string representation of the object
print(MediaVideoInfo.to_json())
# convert the object into a dict
media_video_info_dict = media_video_info_instance.to_dict()
# create an instance of MediaVideoInfo from a dict
media_video_info_from_dict = MediaVideoInfo.from_dict(media_video_info_dict)
[Back to Model list] [Back to API list] [Back to README]