Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

CreateUserTenantMappingResponse.md

File metadata and controls

30 lines (21 loc) · 1.21 KB

CreateUserTenantMappingResponse

Properties

Name Type Description Notes
user_id str Unique identifier for the user in onelens.
tenant_id str Unique identifier for the tenant.

Example

from onelens_backend_client.models.create_user_tenant_mapping_response import CreateUserTenantMappingResponse

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

# convert the object into a dict
create_user_tenant_mapping_response_dict = create_user_tenant_mapping_response_instance.to_dict()
# create an instance of CreateUserTenantMappingResponse from a dict
create_user_tenant_mapping_response_form_dict = create_user_tenant_mapping_response.from_dict(create_user_tenant_mapping_response_dict)

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