PostDeleteRetweetRequestVariables
| Name |
Type |
Description |
Notes |
| dark_request |
bool |
|
[default to False] |
| source_tweet_id |
str |
|
[default to '1349129669258448897'] |
from twitter_openapi_python_generated.models.post_delete_retweet_request_variables import PostDeleteRetweetRequestVariables
# TODO update the JSON string below
json = "{}"
# create an instance of PostDeleteRetweetRequestVariables from a JSON string
post_delete_retweet_request_variables_instance = PostDeleteRetweetRequestVariables.from_json(json)
# print the JSON string representation of the object
print(PostDeleteRetweetRequestVariables.to_json())
# convert the object into a dict
post_delete_retweet_request_variables_dict = post_delete_retweet_request_variables_instance.to_dict()
# create an instance of PostDeleteRetweetRequestVariables from a dict
post_delete_retweet_request_variables_from_dict = PostDeleteRetweetRequestVariables.from_dict(post_delete_retweet_request_variables_dict)
[Back to Model list] [Back to API list] [Back to README]