PostCreateTweetRequest

May 20, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
featuresPostCreateTweetRequestFeatures
query_idstr[default to '5CdvsV_zjv4L64XFifAglw']
variablesPostCreateTweetRequestVariables

Example

from twitter_openapi_python_generated.models.post_create_tweet_request import PostCreateTweetRequest

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

# convert the object into a dict
post_create_tweet_request_dict = post_create_tweet_request_instance.to_dict()
# create an instance of PostCreateTweetRequest from a dict
post_create_tweet_request_from_dict = PostCreateTweetRequest.from_dict(post_create_tweet_request_dict)

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