Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

TenantUserEditRequest

Request to update a tenant user's role.

Properties

Name Type Description Notes
role TenantUserRole

Example

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)

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