Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 965 Bytes

File metadata and controls

29 lines (20 loc) · 965 Bytes

UserResponseData

Properties

Name Type Description Notes
user UserResults [optional]

Example

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)

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