Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1010 Bytes

File metadata and controls

30 lines (21 loc) · 1010 Bytes

UserHighlightsInfo

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)

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