Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 892 Bytes

File metadata and controls

29 lines (20 loc) · 892 Bytes

UserResults

Properties

Name Type Description Notes
result UserUnion [optional]

Example

from twitter_openapi_python_generated.models.user_results import UserResults

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

# convert the object into a dict
user_results_dict = user_results_instance.to_dict()
# create an instance of UserResults from a dict
user_results_from_dict = UserResults.from_dict(user_results_dict)

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