FavoriteTweet

November 10, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
favorite_tweetstr[optional]

Example

from twitter_openapi_python_generated.models.favorite_tweet import FavoriteTweet

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

# convert the object into a dict
favorite_tweet_dict = favorite_tweet_instance.to_dict()
# create an instance of FavoriteTweet from a dict
favorite_tweet_from_dict = FavoriteTweet.from_dict(favorite_tweet_dict)

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