| Name | Type | Description | Notes |
|---|---|---|---|
| first_name | FirstName | ||
| middle_name | MiddleName | [optional] | |
| last_name | LastName | ||
| 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] |
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)