NoteTweetResultMedia

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
inline_mediaList[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]