PostUnfavoriteTweetRequest

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
query_idstr[default to 'ZYKSe-w7KEslx3JhSIk5LA']
variablesPostCreateRetweetRequestVariables

Example

from twitter_openapi_python_generated.models.post_unfavorite_tweet_request import PostUnfavoriteTweetRequest

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

# convert the object into a dict
post_unfavorite_tweet_request_dict = post_unfavorite_tweet_request_instance.to_dict()
# create an instance of PostUnfavoriteTweetRequest from a dict
post_unfavorite_tweet_request_from_dict = PostUnfavoriteTweetRequest.from_dict(post_unfavorite_tweet_request_dict)

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