| Name | Type | Description | Notes |
|---|---|---|---|
| profile_pic_url | ProfilePicUrl | [optional] | |
| last_login | LastLogin | [optional] | |
| 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] | |
| created_at | CreatedAt | [optional] | |
| ol_user_id | object | Unique onelens identifier for the user |
from onelens_backend_client.models.get_tenant_user_profile_response import GetTenantUserProfileResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetTenantUserProfileResponse from a JSON string
get_tenant_user_profile_response_instance = GetTenantUserProfileResponse.from_json(json)
# print the JSON string representation of the object
print(GetTenantUserProfileResponse.to_json())
# convert the object into a dict
get_tenant_user_profile_response_dict = get_tenant_user_profile_response_instance.to_dict()
# create an instance of GetTenantUserProfileResponse from a dict
get_tenant_user_profile_response_form_dict = get_tenant_user_profile_response.from_dict(get_tenant_user_profile_response_dict)