Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.3 KB

File metadata and controls

50 lines (41 loc) · 2.3 KB

AuthenticatorEmailStage

AuthenticatorEmailStage Serializer

Properties

Name Type Description Notes
pk UUID [readonly]
name str
component str Get object type so that we know how to edit the object [readonly]
verbose_name str Return object's verbose_name [readonly]
verbose_name_plural str Return object's plural verbose_name [readonly]
meta_model_name str Return internal model name [readonly]
flow_set List[FlowSet] [readonly]
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 import AuthenticatorEmailStage

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

# convert the object into a dict
authenticator_email_stage_dict = authenticator_email_stage_instance.to_dict()
# create an instance of AuthenticatorEmailStage from a dict
authenticator_email_stage_from_dict = AuthenticatorEmailStage.from_dict(authenticator_email_stage_dict)

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