Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.94 KB

File metadata and controls

39 lines (30 loc) · 1.94 KB

PatchedFlowRequest

Flow Serializer

Properties

Name Type Description Notes
name str [optional]
slug str Visible in the URL. [optional]
title str Shown as the Title in Flow pages. [optional]
designation FlowDesignationEnum Decides what this Flow is used for. For example, the Authentication flow is redirect to when an un-authenticated user visits authentik. [optional]
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]

Example

from authentik_client.models.patched_flow_request import PatchedFlowRequest

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

# convert the object into a dict
patched_flow_request_dict = patched_flow_request_instance.to_dict()
# create an instance of PatchedFlowRequest from a dict
patched_flow_request_from_dict = PatchedFlowRequest.from_dict(patched_flow_request_dict)

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