Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.12 KB

File metadata and controls

45 lines (36 loc) · 2.12 KB

PatchedEmailStageRequest

EmailStage Serializer

Properties

Name Type Description Notes
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]
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]

Example

from authentik_client.models.patched_email_stage_request import PatchedEmailStageRequest

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

# convert the object into a dict
patched_email_stage_request_dict = patched_email_stage_request_instance.to_dict()
# create an instance of PatchedEmailStageRequest from a dict
patched_email_stage_request_from_dict = PatchedEmailStageRequest.from_dict(patched_email_stage_request_dict)

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