| Name | Type | Description | Notes |
|---|---|---|---|
| legacy | TweetCardLegacy | [optional] | |
| rest_id | str | [optional] |
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)