TweetPreviousCounts

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
bookmark_countint
favorite_countint
quote_countint
reply_countint
retweet_countint

Example

from twitter_openapi_python_generated.models.tweet_previous_counts import TweetPreviousCounts

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

# convert the object into a dict
tweet_previous_counts_dict = tweet_previous_counts_instance.to_dict()
# create an instance of TweetPreviousCounts from a dict
tweet_previous_counts_from_dict = TweetPreviousCounts.from_dict(tweet_previous_counts_dict)

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