Name | Type | Description | Notes |
---|---|---|---|
user | UserResults | [optional] |
from twitter_openapi_python_generated.models.user_response_data import UserResponseData
# TODO update the JSON string below
json = "{}"
# create an instance of UserResponseData from a JSON string
user_response_data_instance = UserResponseData.from_json(json)
# print the JSON string representation of the object
print(UserResponseData.to_json())
# convert the object into a dict
user_response_data_dict = user_response_data_instance.to_dict()
# create an instance of UserResponseData from a dict
user_response_data_from_dict = UserResponseData.from_dict(user_response_data_dict)