Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

TweetInterstitial

Properties

Name Type Description Notes
typename TypeName
display_type str
reveal_text TweetInterstitialRevealText
text TweetInterstitialText

Example

from twitter_openapi_python_generated.models.tweet_interstitial import TweetInterstitial

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

# convert the object into a dict
tweet_interstitial_dict = tweet_interstitial_instance.to_dict()
# create an instance of TweetInterstitial from a dict
tweet_interstitial_from_dict = TweetInterstitial.from_dict(tweet_interstitial_dict)

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