Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

UserHighlightsTweetsResult

Properties

Name Type Description Notes
typename TypeName
timeline UserHighlightsTweetsTimeline

Example

from twitter_openapi_python_generated.models.user_highlights_tweets_result import UserHighlightsTweetsResult

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

# convert the object into a dict
user_highlights_tweets_result_dict = user_highlights_tweets_result_instance.to_dict()
# create an instance of UserHighlightsTweetsResult from a dict
user_highlights_tweets_result_from_dict = UserHighlightsTweetsResult.from_dict(user_highlights_tweets_result_dict)

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