TweetWithVisibilityResults

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typenameTypeName
limited_action_resultsDict[str, object][optional]
media_visibility_resultsMediaVisibilityResults[optional]
tweetTweet
tweet_interstitialTweetInterstitial[optional]

Example

from twitter_openapi_python_generated.models.tweet_with_visibility_results import TweetWithVisibilityResults

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

# convert the object into a dict
tweet_with_visibility_results_dict = tweet_with_visibility_results_instance.to_dict()
# create an instance of TweetWithVisibilityResults from a dict
tweet_with_visibility_results_from_dict = TweetWithVisibilityResults.from_dict(tweet_with_visibility_results_dict)

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