Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.77 KB

File metadata and controls

41 lines (32 loc) · 1.77 KB

FlowSet

Stripped down flow serializer

Properties

Name Type Description Notes
pk UUID [readonly]
policybindingmodel_ptr_id UUID [readonly]
name str
slug str Visible in the URL.
title str Shown as the Title in Flow pages.
designation FlowDesignationEnum Decides what this Flow is used for. For example, the Authentication flow is redirect to when an un-authenticated user visits authentik.
background_url str Get the URL to the background image [readonly]
policy_engine_mode PolicyEngineMode [optional]
compatibility_mode bool Enable compatibility mode, increases compatibility with password managers on mobile devices. [optional]
export_url str Get export URL for flow [readonly]
layout FlowLayoutEnum [optional]
denied_action DeniedActionEnum Configure what should happen when a flow denies access to a user. [optional]

Example

from authentik_client.models.flow_set import FlowSet

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

# convert the object into a dict
flow_set_dict = flow_set_instance.to_dict()
# create an instance of FlowSet from a dict
flow_set_from_dict = FlowSet.from_dict(flow_set_dict)

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