Persona of the user
| Name | Type | Description | Notes |
|---|
from onelens_backend_client.models.create_tenant_user_request_persona import CreateTenantUserRequestPersona
# TODO update the JSON string below
json = "{}"
# create an instance of CreateTenantUserRequestPersona from a JSON string
create_tenant_user_request_persona_instance = CreateTenantUserRequestPersona.from_json(json)
# print the JSON string representation of the object
print(CreateTenantUserRequestPersona.to_json())
# convert the object into a dict
create_tenant_user_request_persona_dict = create_tenant_user_request_persona_instance.to_dict()
# create an instance of CreateTenantUserRequestPersona from a dict
create_tenant_user_request_persona_form_dict = create_tenant_user_request_persona.from_dict(create_tenant_user_request_persona_dict)