Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

PatchedSettingsRequestFlags

Properties

Name Type Description Notes
enterprise_audit_include_expanded_diff bool
policies_buffered_access_view bool
flows_continuous_login bool
flows_refresh_others bool

Example

from authentik_client.models.patched_settings_request_flags import PatchedSettingsRequestFlags

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

# convert the object into a dict
patched_settings_request_flags_dict = patched_settings_request_flags_instance.to_dict()
# create an instance of PatchedSettingsRequestFlags from a dict
patched_settings_request_flags_from_dict = PatchedSettingsRequestFlags.from_dict(patched_settings_request_flags_dict)

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