Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 932 Bytes

File metadata and controls

29 lines (20 loc) · 932 Bytes

UnfavoriteTweet

Properties

Name Type Description Notes
unfavorite_tweet str [optional]

Example

from twitter_openapi_python_generated.models.unfavorite_tweet import UnfavoriteTweet

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

# convert the object into a dict
unfavorite_tweet_dict = unfavorite_tweet_instance.to_dict()
# create an instance of UnfavoriteTweet from a dict
unfavorite_tweet_from_dict = UnfavoriteTweet.from_dict(unfavorite_tweet_dict)

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