Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.74 KB

File metadata and controls

36 lines (27 loc) · 1.74 KB

FlowStageBindingRequest

FlowStageBinding Serializer

Properties

Name Type Description Notes
target UUID
stage UUID
evaluate_on_plan bool Evaluate policies during the Flow planning process. [optional]
re_evaluate_policies bool Evaluate policies when the Stage is presented to the user. [optional]
order int
policy_engine_mode PolicyEngineMode [optional]
invalid_response_action InvalidResponseActionEnum Configure how the flow executor should handle an invalid response to a challenge. RETRY returns the error message and a similar challenge to the executor. RESTART restarts the flow from the beginning, and RESTART_WITH_CONTEXT restarts the flow while keeping the current context. [optional]

Example

from authentik_client.models.flow_stage_binding_request import FlowStageBindingRequest

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

# convert the object into a dict
flow_stage_binding_request_dict = flow_stage_binding_request_instance.to_dict()
# create an instance of FlowStageBindingRequest from a dict
flow_stage_binding_request_from_dict = FlowStageBindingRequest.from_dict(flow_stage_binding_request_dict)

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