| Name | Type | Description | Notes |
|---|---|---|---|
| typename | TypeName | ||
| has_moderated_replies | bool | [optional] | |
| highlights | Highlight | [optional] | |
| item_type | ContentItemType | ||
| promoted_metadata | Dict[str, object] | [optional] | |
| social_context | SocialContextUnion | [optional] | |
| tweet_display_type | str | ||
| tweet_results | ItemResult |
from twitter_openapi_python_generated.models.timeline_tweet import TimelineTweet
# TODO update the JSON string below
json = "{}"
# create an instance of TimelineTweet from a JSON string
timeline_tweet_instance = TimelineTweet.from_json(json)
# print the JSON string representation of the object
print(TimelineTweet.to_json())
# convert the object into a dict
timeline_tweet_dict = timeline_tweet_instance.to_dict()
# create an instance of TimelineTweet from a dict
timeline_tweet_from_dict = TimelineTweet.from_dict(timeline_tweet_dict)