Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.63 KB

File metadata and controls

37 lines (28 loc) · 1.63 KB

FlowSetRequest

Stripped down flow serializer

Properties

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.
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]

Example

from authentik_client.models.flow_set_request import FlowSetRequest

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

# convert the object into a dict
flow_set_request_dict = flow_set_request_instance.to_dict()
# create an instance of FlowSetRequest from a dict
flow_set_request_from_dict = FlowSetRequest.from_dict(flow_set_request_dict)

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