PostCreateRetweetRequest

May 20, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
query_idstr[default to 'mbRO74GrOvSfRcJnlMapnQ']
variablesPostCreateRetweetRequestVariables

Example

from twitter_openapi_python_generated.models.post_create_retweet_request import PostCreateRetweetRequest

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

# convert the object into a dict
post_create_retweet_request_dict = post_create_retweet_request_instance.to_dict()
# create an instance of PostCreateRetweetRequest from a dict
post_create_retweet_request_from_dict = PostCreateRetweetRequest.from_dict(post_create_retweet_request_dict)

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