Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 2.68 KB

UpdateTenantUserBySystemResponse.md

File metadata and controls

51 lines (42 loc) · 2.68 KB

UpdateTenantUserBySystemResponse

Properties

Name Type Description Notes
first_name FirstName
middle_name MiddleName [optional]
last_name LastName
email Email [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]
last_login LastLogin [optional]
created_at CreatedAt [optional]
ol_user_id object Unique onelens identifier for the user

Example

from onelens_backend_client.models.update_tenant_user_by_system_response import UpdateTenantUserBySystemResponse

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

# convert the object into a dict
update_tenant_user_by_system_response_dict = update_tenant_user_by_system_response_instance.to_dict()
# create an instance of UpdateTenantUserBySystemResponse from a dict
update_tenant_user_by_system_response_form_dict = update_tenant_user_by_system_response.from_dict(update_tenant_user_by_system_response_dict)

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