Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 931 Bytes

File metadata and controls

29 lines (20 loc) · 931 Bytes

TweetTombstone

Properties

Name Type Description Notes
typename TypeName [optional]

Example

from twitter_openapi_python_generated.models.tweet_tombstone import TweetTombstone

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

# convert the object into a dict
tweet_tombstone_dict = tweet_tombstone_instance.to_dict()
# create an instance of TweetTombstone from a dict
tweet_tombstone_from_dict = TweetTombstone.from_dict(tweet_tombstone_dict)

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