Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 940 Bytes

File metadata and controls

29 lines (20 loc) · 940 Bytes

UserTweetsUser

Properties

Name Type Description Notes
result UserTweetsResult

Example

from twitter_openapi_python_generated.models.user_tweets_user import UserTweetsUser

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

# convert the object into a dict
user_tweets_user_dict = user_tweets_user_instance.to_dict()
# create an instance of UserTweetsUser from a dict
user_tweets_user_from_dict = UserTweetsUser.from_dict(user_tweets_user_dict)

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