Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

File metadata and controls

30 lines (21 loc) · 1.18 KB

PostUnfavoriteTweetRequest

Properties

Name Type Description Notes
query_id str [default to 'ZYKSe-w7KEslx3JhSIk5LA']
variables PostCreateRetweetRequestVariables

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]