AuthenticatorEmailStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| 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] |
from authentik_client.models.patched_authenticator_email_stage_request import PatchedAuthenticatorEmailStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedAuthenticatorEmailStageRequest from a JSON string
patched_authenticator_email_stage_request_instance = PatchedAuthenticatorEmailStageRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedAuthenticatorEmailStageRequest.to_json())
# convert the object into a dict
patched_authenticator_email_stage_request_dict = patched_authenticator_email_stage_request_instance.to_dict()
# create an instance of PatchedAuthenticatorEmailStageRequest from a dict
patched_authenticator_email_stage_request_from_dict = PatchedAuthenticatorEmailStageRequest.from_dict(patched_authenticator_email_stage_request_dict)