Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

TweetInterstitialText

Properties

Name Type Description Notes
entities List[TweetInterstitialTextEntity]
rtl bool
text str

Example

from twitter_openapi_python_generated.models.tweet_interstitial_text import TweetInterstitialText

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

# convert the object into a dict
tweet_interstitial_text_dict = tweet_interstitial_text_instance.to_dict()
# create an instance of TweetInterstitialText from a dict
tweet_interstitial_text_from_dict = TweetInterstitialText.from_dict(tweet_interstitial_text_dict)

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