Request to update a tenant user's role.
| Name | Type | Description | Notes |
|---|---|---|---|
| role | TenantUserRole |
from ksapi.models.tenant_user_edit_request import TenantUserEditRequest
# TODO update the JSON string below
json = "{}"
# create an instance of TenantUserEditRequest from a JSON string
tenant_user_edit_request_instance = TenantUserEditRequest.from_json(json)
# print the JSON string representation of the object
print(TenantUserEditRequest.to_json())
# convert the object into a dict
tenant_user_edit_request_dict = tenant_user_edit_request_instance.to_dict()
# create an instance of TenantUserEditRequest from a dict
tenant_user_edit_request_from_dict = TenantUserEditRequest.from_dict(tenant_user_edit_request_dict)