Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.47 KB

CreateTenantUserRequest.md

File metadata and controls

50 lines (41 loc) · 2.47 KB

CreateTenantUserRequest

Properties

Name Type Description Notes
first_name FirstName
middle_name MiddleName [optional]
last_name LastName
email object Email of the user
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]

Example

from onelens_backend_client.models.create_tenant_user_request import CreateTenantUserRequest

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

# convert the object into a dict
create_tenant_user_request_dict = create_tenant_user_request_instance.to_dict()
# create an instance of CreateTenantUserRequest from a dict
create_tenant_user_request_form_dict = create_tenant_user_request.from_dict(create_tenant_user_request_dict)

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