Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

UserUnavailable

Properties

Name Type Description Notes
typename TypeName
message str [optional]
reason str

Example

from twitter_openapi_python_generated.models.user_unavailable import UserUnavailable

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

# convert the object into a dict
user_unavailable_dict = user_unavailable_instance.to_dict()
# create an instance of UserUnavailable from a dict
user_unavailable_from_dict = UserUnavailable.from_dict(user_unavailable_dict)

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