Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

NoteTweetResultMedia

Properties

Name Type Description Notes
inline_media List[NoteTweetResultMediaInlineMedia]

Example

from twitter_openapi_python_generated.models.note_tweet_result_media import NoteTweetResultMedia

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

# convert the object into a dict
note_tweet_result_media_dict = note_tweet_result_media_instance.to_dict()
# create an instance of NoteTweetResultMedia from a dict
note_tweet_result_media_from_dict = NoteTweetResultMedia.from_dict(note_tweet_result_media_dict)

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