Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 839 Bytes

File metadata and controls

29 lines (20 loc) · 839 Bytes

UserStatus

Properties

Name Type Description Notes
permalink str [optional]

Example

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)

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