Name | Type | Description | Notes |
---|---|---|---|
auth0_data | Auth0UserAllFields | The data of the user in Auth0. | |
onelens_data | CreateUserResponse | The data of the user in onelens. |
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)