Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

UserHighlightsTweetsData.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

UserHighlightsTweetsData

Properties

Name Type Description Notes
user UserHighlightsTweetsUser

Example

from twitter_openapi_python_generated.models.user_highlights_tweets_data import UserHighlightsTweetsData

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

# convert the object into a dict
user_highlights_tweets_data_dict = user_highlights_tweets_data_instance.to_dict()
# create an instance of UserHighlightsTweetsData from a dict
user_highlights_tweets_data_from_dict = UserHighlightsTweetsData.from_dict(user_highlights_tweets_data_dict)

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