Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 949 Bytes

File metadata and controls

32 lines (23 loc) · 949 Bytes

UpdateUser

Properties

Name Type Description Notes
user_id str
user_role str [optional]
user_status str [optional]
to_user_id str [optional]

Example

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)

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