Name | Type | Description | Notes |
---|---|---|---|
status | UserStatus | Status of the user like ACTIVE, BLOCKED etc. | [optional] |
first_name | FirstName | ||
middle_name | MiddleName | [optional] | |
last_name | LastName | ||
[optional] | |||
mobile_country_code | MobileCountryCode | [optional] | |
mobile_number | MobileNumber | [optional] | |
persona | CreateTenantUserRequestPersona | [optional] | |
role | UserRole | Role of the user in the tenant | [optional] |
job_title | JobTitle | [optional] | |
manager | Manager | [optional] | |
city | City | [optional] | |
state | State | [optional] | |
country | Country | [optional] | |
display_language | DisplayLanguage | [optional] | |
preferred_currency | PreferredCurrency | [optional] | |
timezone | Timezone | [optional] | |
display_date_format | DisplayDateFormat | [optional] | |
display_time_format | DisplayTimeFormat | [optional] | |
sources | Sources | [optional] | |
last_login | LastLogin | [optional] | |
created_at | CreatedAt | [optional] | |
ol_user_id | object | Unique onelens identifier for the user | |
id | object | PK in the tenant users table |
from onelens_backend_client.models.enable_tenant_user_response import EnableTenantUserResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EnableTenantUserResponse from a JSON string
enable_tenant_user_response_instance = EnableTenantUserResponse.from_json(json)
# print the JSON string representation of the object
print(EnableTenantUserResponse.to_json())
# convert the object into a dict
enable_tenant_user_response_dict = enable_tenant_user_response_instance.to_dict()
# create an instance of EnableTenantUserResponse from a dict
enable_tenant_user_response_form_dict = enable_tenant_user_response.from_dict(enable_tenant_user_response_dict)