Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

CreateTenantUserRequestPersona

Persona of the user

Properties

Name Type Description Notes

Example

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)

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