Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 921 Bytes

File metadata and controls

29 lines (20 loc) · 921 Bytes

UsersResponse

Properties

Name Type Description Notes
data UsersResponseData

Example

from twitter_openapi_python_generated.models.users_response import UsersResponse

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

# convert the object into a dict
users_response_dict = users_response_instance.to_dict()
# create an instance of UsersResponse from a dict
users_response_from_dict = UsersResponse.from_dict(users_response_dict)

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