Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.26 KB

File metadata and controls

36 lines (27 loc) · 1.26 KB

UserResponse

Properties

Name Type Description Notes
id UUID User ID
email str Email address of the user
first_name str First name of the user
last_name str Last name of the user
idp_type IdpType
current_tenant_id UUID Current tenant ID the user is logged into
current_tenant_role TenantUserRole
default_tenant_id UUID Default tenant ID the user shall be logged into

Example

from ksapi.models.user_response import UserResponse

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

# convert the object into a dict
user_response_dict = user_response_instance.to_dict()
# create an instance of UserResponse from a dict
user_response_from_dict = UserResponse.from_dict(user_response_dict)

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