Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.79 KB

File metadata and controls

39 lines (30 loc) · 1.79 KB

FlowStageBinding

FlowStageBinding Serializer

Properties

Name Type Description Notes
pk UUID [readonly]
policybindingmodel_ptr_id UUID [readonly]
target UUID
stage UUID
stage_obj Stage [readonly]
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 import FlowStageBinding

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

# convert the object into a dict
flow_stage_binding_dict = flow_stage_binding_instance.to_dict()
# create an instance of FlowStageBinding from a dict
flow_stage_binding_from_dict = FlowStageBinding.from_dict(flow_stage_binding_dict)

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