UserHighlightsTweetsResponse
November 10, 2024 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| data | UserHighlightsTweetsData | ||
| errors | List[ErrorResponse] | [optional] |
Example
from twitter_openapi_python_generated.models.user_highlights_tweets_response import UserHighlightsTweetsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UserHighlightsTweetsResponse from a JSON string
user_highlights_tweets_response_instance = UserHighlightsTweetsResponse.from_json(json)
# print the JSON string representation of the object
print(UserHighlightsTweetsResponse.to_json())
# convert the object into a dict
user_highlights_tweets_response_dict = user_highlights_tweets_response_instance.to_dict()
# create an instance of UserHighlightsTweetsResponse from a dict
user_highlights_tweets_response_from_dict = UserHighlightsTweetsResponse.from_dict(user_highlights_tweets_response_dict)