| Name | Type | Description | Notes |
|---|---|---|---|
| permalink | str | [optional] |
from halo_client.models.user_status import UserStatus
# TODO update the JSON string below
json = "{}"
# create an instance of UserStatus from a JSON string
user_status_instance = UserStatus.from_json(json)
# print the JSON string representation of the object
print(UserStatus.to_json())
# convert the object into a dict
user_status_dict = user_status_instance.to_dict()
# create an instance of UserStatus from a dict
user_status_from_dict = UserStatus.from_dict(user_status_dict)