Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 2.71 KB

UpdateTenantUserDetailsResponse.md

File metadata and controls

52 lines (43 loc) · 2.71 KB

UpdateTenantUserDetailsResponse

Properties

Name Type Description Notes
first_name FirstName
middle_name MiddleName [optional]
last_name LastName
mobile_country_code MobileCountryCode [optional]
mobile_number MobileNumber [optional]
persona CreateTenantUserRequestPersona [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]
email Email [optional]
role UserRole Role of the user in the tenant [optional]
status UserStatus Status of the user like ACTIVE, BLOCKED etc. [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

Example

from onelens_backend_client.models.update_tenant_user_details_response import UpdateTenantUserDetailsResponse

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

# convert the object into a dict
update_tenant_user_details_response_dict = update_tenant_user_details_response_instance.to_dict()
# create an instance of UpdateTenantUserDetailsResponse from a dict
update_tenant_user_details_response_form_dict = update_tenant_user_details_response.from_dict(update_tenant_user_details_response_dict)

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