PostCreateTweetRequestVariablesMedia

November 1, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
media_entitiesList[PostCreateTweetRequestVariablesMediaMediaEntitiesInner][optional]
possibly_sensitivebool[default to False]

Example

from twitter_openapi_python_generated.models.post_create_tweet_request_variables_media import PostCreateTweetRequestVariablesMedia

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

# convert the object into a dict
post_create_tweet_request_variables_media_dict = post_create_tweet_request_variables_media_instance.to_dict()
# create an instance of PostCreateTweetRequestVariablesMedia from a dict
post_create_tweet_request_variables_media_from_dict = PostCreateTweetRequestVariablesMedia.from_dict(post_create_tweet_request_variables_media_dict)

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