Name | Type | Description | Notes |
---|---|---|---|
redirect_onstart | bool | If set to true, location header will be set for redirect to start auth flow | [optional] |
return_to | str | URL to redirect after successful authentication.<br/> Example:`"https://frontier.example.com\"` | [optional] |
str | Email of the user to authenticate. Used for magic links.<br/> Example:`[email protected]` | [optional] | |
callback_url | str | Host which should handle the call to finish authentication flow, for most cases it could be host of frontier but in case of proxies, this will be proxy public endpoint.<br/> Example:`https://frontier.example.com/v1beta1/auth/callback` | [optional] |
from frontier_api.models.frontier_service_authenticate2_request import FrontierServiceAuthenticate2Request
# TODO update the JSON string below
json = "{}"
# create an instance of FrontierServiceAuthenticate2Request from a JSON string
frontier_service_authenticate2_request_instance = FrontierServiceAuthenticate2Request.from_json(json)
# print the JSON string representation of the object
print FrontierServiceAuthenticate2Request.to_json()
# convert the object into a dict
frontier_service_authenticate2_request_dict = frontier_service_authenticate2_request_instance.to_dict()
# create an instance of FrontierServiceAuthenticate2Request from a dict
frontier_service_authenticate2_request_form_dict = frontier_service_authenticate2_request.from_dict(frontier_service_authenticate2_request_dict)