Flow Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| 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 | str | Background shown during execution | [optional] |
| policy_engine_mode | PolicyEngineMode | [optional] | |
| compatibility_mode | bool | Enable compatibility mode, increases compatibility with password managers on mobile devices. | [optional] |
| layout | FlowLayoutEnum | [optional] | |
| denied_action | DeniedActionEnum | Configure what should happen when a flow denies access to a user. | [optional] |
| authentication | AuthenticationEnum | Required level of authentication and authorization to access a flow. | [optional] |
from authentik_client.models.flow_request import FlowRequest
# TODO update the JSON string below
json = "{}"
# create an instance of FlowRequest from a JSON string
flow_request_instance = FlowRequest.from_json(json)
# print the JSON string representation of the object
print(FlowRequest.to_json())
# convert the object into a dict
flow_request_dict = flow_request_instance.to_dict()
# create an instance of FlowRequest from a dict
flow_request_from_dict = FlowRequest.from_dict(flow_request_dict)