PostCreateRetweetRequestVariables

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
dark_requestbool[default to False]
tweet_idstr[default to '1349129669258448897']

Example

from twitter_openapi_python_generated.models.post_create_retweet_request_variables import PostCreateRetweetRequestVariables

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

# convert the object into a dict
post_create_retweet_request_variables_dict = post_create_retweet_request_variables_instance.to_dict()
# create an instance of PostCreateRetweetRequestVariables from a dict
post_create_retweet_request_variables_from_dict = PostCreateRetweetRequestVariables.from_dict(post_create_retweet_request_variables_dict)

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