Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

UpdateTenantMemberRequest

Properties

Name Type Description Notes
permissions List[str]

Example

from sensorbucket.models.update_tenant_member_request import UpdateTenantMemberRequest

# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTenantMemberRequest from a JSON string
update_tenant_member_request_instance = UpdateTenantMemberRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateTenantMemberRequest.to_json())

# convert the object into a dict
update_tenant_member_request_dict = update_tenant_member_request_instance.to_dict()
# create an instance of UpdateTenantMemberRequest from a dict
update_tenant_member_request_from_dict = UpdateTenantMemberRequest.from_dict(update_tenant_member_request_dict)

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