Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

CurrentBrandFlags

Properties

Name Type Description Notes
enterprise_audit_include_expanded_diff bool
flows_continuous_login bool
flows_refresh_others bool

Example

from authentik_client.models.current_brand_flags import CurrentBrandFlags

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

# convert the object into a dict
current_brand_flags_dict = current_brand_flags_instance.to_dict()
# create an instance of CurrentBrandFlags from a dict
current_brand_flags_from_dict = CurrentBrandFlags.from_dict(current_brand_flags_dict)

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