Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.31 KB

CreateAuth0AndOnelensUserResponse.md

File metadata and controls

30 lines (21 loc) · 1.31 KB

CreateAuth0AndOnelensUserResponse

Properties

Name Type Description Notes
auth0_data Auth0UserAllFields The data of the user in Auth0.
onelens_data CreateUserResponse The data of the user in onelens.

Example

from onelens_backend_client.models.create_auth0_and_onelens_user_response import CreateAuth0AndOnelensUserResponse

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

# convert the object into a dict
create_auth0_and_onelens_user_response_dict = create_auth0_and_onelens_user_response_instance.to_dict()
# create an instance of CreateAuth0AndOnelensUserResponse from a dict
create_auth0_and_onelens_user_response_form_dict = create_auth0_and_onelens_user_response.from_dict(create_auth0_and_onelens_user_response_dict)

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