Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.98 KB

File metadata and controls

44 lines (35 loc) · 1.98 KB

AuthenticatorEmailStageRequest

AuthenticatorEmailStage Serializer

Properties

Name Type Description Notes
name str
configure_flow UUID Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage. [optional]
friendly_name str [optional]
use_global_settings bool When enabled, global Email connection settings will be used and connection settings below will be ignored. [optional]
host str [optional]
port int [optional]
username str [optional]
password str [optional]
use_tls bool [optional]
use_ssl bool [optional]
timeout int [optional]
from_address str [optional]
subject str [optional]
token_expiry str Time the token sent is valid (Format: hours=3,minutes=17,seconds=300). [optional]
template str [optional]

Example

from authentik_client.models.authenticator_email_stage_request import AuthenticatorEmailStageRequest

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

# convert the object into a dict
authenticator_email_stage_request_dict = authenticator_email_stage_request_instance.to_dict()
# create an instance of AuthenticatorEmailStageRequest from a dict
authenticator_email_stage_request_from_dict = AuthenticatorEmailStageRequest.from_dict(authenticator_email_stage_request_dict)

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