Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 917 Bytes

File metadata and controls

30 lines (21 loc) · 917 Bytes

TweetCard

Properties

Name Type Description Notes
legacy TweetCardLegacy [optional]
rest_id str [optional]

Example

from twitter_openapi_python_generated.models.tweet_card import TweetCard

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

# convert the object into a dict
tweet_card_dict = tweet_card_instance.to_dict()
# create an instance of TweetCard from a dict
tweet_card_from_dict = TweetCard.from_dict(tweet_card_dict)

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