Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.44 KB

CreateAuth0UserRequest.md

File metadata and controls

35 lines (26 loc) · 1.44 KB

CreateAuth0UserRequest

Properties

Name Type Description Notes
email str The email of the user in Auth0.
password str The password of the user in Auth0.
email_verified bool [optional]
app_metadata Auth0CreateUserAppMetadata The app_metadata of the user in Auth0.
connection Auth0UserConnection The connection of the user in Auth0. [optional]
given_name str [optional]
family_name str [optional]

Example

from onelens_backend_client.models.create_auth0_user_request import CreateAuth0UserRequest

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

# convert the object into a dict
create_auth0_user_request_dict = create_auth0_user_request_instance.to_dict()
# create an instance of CreateAuth0UserRequest from a dict
create_auth0_user_request_form_dict = create_auth0_user_request.from_dict(create_auth0_user_request_dict)

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