Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.4 KB

File metadata and controls

43 lines (34 loc) · 2.4 KB

PatchedSettingsRequest

Settings Serializer

Properties

Name Type Description Notes
avatars str Configure how authentik should show avatars for users. [optional]
default_user_change_name bool Enable the ability for users to change their name. [optional]
default_user_change_email bool Enable the ability for users to change their email address. [optional]
default_user_change_username bool Enable the ability for users to change their username. [optional]
event_retention str Events will be deleted after this duration.(Format: weeks=3;days=2;hours=3,seconds=2). [optional]
reputation_lower_limit int Reputation cannot decrease lower than this value. Zero or negative. [optional]
reputation_upper_limit int Reputation cannot increase higher than this value. Zero or positive. [optional]
footer_links object [optional]
gdpr_compliance bool When enabled, all the events caused by a user will be deleted upon the user's deletion. [optional]
impersonation bool Globally enable/disable impersonation. [optional]
impersonation_require_reason bool Require administrators to provide a reason for impersonating a user. [optional]
default_token_duration str Default token duration [optional]
default_token_length int Default token length [optional]
flags PatchedSettingsRequestFlags [optional]

Example

from authentik_client.models.patched_settings_request import PatchedSettingsRequest

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

# convert the object into a dict
patched_settings_request_dict = patched_settings_request_instance.to_dict()
# create an instance of PatchedSettingsRequest from a dict
patched_settings_request_from_dict = PatchedSettingsRequest.from_dict(patched_settings_request_dict)

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