Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.42 KB

File metadata and controls

39 lines (30 loc) · 1.42 KB

TweetPreviewDisplayTweet

Properties

Name Type Description Notes
bookmark_count int
core UserResultCore
created_at str
entities object
favorite_count int
quote_count int
reply_count int
rest_id str
retweet_count int
text str
view_count TweetPreviewDisplayTweetViewCount

Example

from twitter_openapi_python_generated.models.tweet_preview_display_tweet import TweetPreviewDisplayTweet

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

# convert the object into a dict
tweet_preview_display_tweet_dict = tweet_preview_display_tweet_instance.to_dict()
# create an instance of TweetPreviewDisplayTweet from a dict
tweet_preview_display_tweet_from_dict = TweetPreviewDisplayTweet.from_dict(tweet_preview_display_tweet_dict)

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