Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 986 Bytes

File metadata and controls

29 lines (20 loc) · 986 Bytes

UserTweetsResponse

Properties

Name Type Description Notes
data UserTweetsData

Example

from twitter_openapi_python_generated.models.user_tweets_response import UserTweetsResponse

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

# convert the object into a dict
user_tweets_response_dict = user_tweets_response_instance.to_dict()
# create an instance of UserTweetsResponse from a dict
user_tweets_response_from_dict = UserTweetsResponse.from_dict(user_tweets_response_dict)

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