Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

AddTenantMemberRequest

Properties

Name Type Description Notes
user_id str
permissions List[str]

Example

from sensorbucket.models.add_tenant_member_request import AddTenantMemberRequest

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

# convert the object into a dict
add_tenant_member_request_dict = add_tenant_member_request_instance.to_dict()
# create an instance of AddTenantMemberRequest from a dict
add_tenant_member_request_from_dict = AddTenantMemberRequest.from_dict(add_tenant_member_request_dict)

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