UserHighlightsInfo
June 7, 2024 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| can_highlight_tweets | bool | ||
| highlighted_tweets | str |
Example
from twitter_openapi_python_generated.models.user_highlights_info import UserHighlightsInfo
# TODO update the JSON string below
json = "{}"
# create an instance of UserHighlightsInfo from a JSON string
user_highlights_info_instance = UserHighlightsInfo.from_json(json)
# print the JSON string representation of the object
print(UserHighlightsInfo.to_json())
# convert the object into a dict
user_highlights_info_dict = user_highlights_info_instance.to_dict()
# create an instance of UserHighlightsInfo from a dict
user_highlights_info_from_dict = UserHighlightsInfo.from_dict(user_highlights_info_dict)