Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

TweetInterstitialTextEntity.md

File metadata and controls

31 lines (22 loc) · 1.17 KB

TweetInterstitialTextEntity

Properties

Name Type Description Notes
from_index int
ref TweetInterstitialTextEntityRef
to_index int

Example

from twitter_openapi_python_generated.models.tweet_interstitial_text_entity import TweetInterstitialTextEntity

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

# convert the object into a dict
tweet_interstitial_text_entity_dict = tweet_interstitial_text_entity_instance.to_dict()
# create an instance of TweetInterstitialTextEntity from a dict
tweet_interstitial_text_entity_from_dict = TweetInterstitialTextEntity.from_dict(tweet_interstitial_text_entity_dict)

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