Name | Type | Description | Notes |
---|---|---|---|
profile_pic_url | ProfilePicUrl | [optional] | |
last_login | LastLogin | [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] | |
status | UserStatus | Status of the user like ACTIVE, BLOCKED etc. | [optional] |
sources | Sources | [optional] | |
created_at | CreatedAt | [optional] | |
ol_user_id | object | Unique onelens identifier for the user |
from onelens_backend_client.models.get_all_tenant_users_item import GetAllTenantUsersItem
# TODO update the JSON string below
json = "{}"
# create an instance of GetAllTenantUsersItem from a JSON string
get_all_tenant_users_item_instance = GetAllTenantUsersItem.from_json(json)
# print the JSON string representation of the object
print(GetAllTenantUsersItem.to_json())
# convert the object into a dict
get_all_tenant_users_item_dict = get_all_tenant_users_item_instance.to_dict()
# create an instance of GetAllTenantUsersItem from a dict
get_all_tenant_users_item_form_dict = get_all_tenant_users_item.from_dict(get_all_tenant_users_item_dict)