EmailStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| 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] | |
| token_expiry | str | Time the token sent is valid (Format: hours=3,minutes=17,seconds=300). | [optional] |
| subject | str | [optional] | |
| template | str | [optional] | |
| activate_user_on_success | bool | Activate users upon completion of stage. | [optional] |
| recovery_max_attempts | int | [optional] | |
| recovery_cache_timeout | str | The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3). | [optional] |
from authentik_client.models.email_stage_request import EmailStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of EmailStageRequest from a JSON string
email_stage_request_instance = EmailStageRequest.from_json(json)
# print the JSON string representation of the object
print(EmailStageRequest.to_json())
# convert the object into a dict
email_stage_request_dict = email_stage_request_instance.to_dict()
# create an instance of EmailStageRequest from a dict
email_stage_request_from_dict = EmailStageRequest.from_dict(email_stage_request_dict)