| Name | Type | Description | Notes |
|---|---|---|---|
| user_id | str | ||
| user_role | str | [optional] | |
| user_status | str | [optional] | |
| to_user_id | str | [optional] |
from boldsign.models.update_user import UpdateUser
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateUser from a JSON string
update_user_instance = UpdateUser.from_json(json)
# print the JSON string representation of the object
print(UpdateUser.to_json())
# convert the object into a dict
update_user_dict = update_user_instance.to_dict()
# create an instance of UpdateUser from a dict
update_user_from_dict = UpdateUser.from_dict(update_user_dict)