Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

FlowInspectorPlan

Serializer for an active FlowPlan

Properties

Name Type Description Notes
current_stage FlowStageBinding [readonly]
next_planned_stage FlowStageBinding [readonly]
plan_context Dict[str, object] Get the plan's context, sanitized [readonly]
session_id str Get a unique session ID [readonly]

Example

from authentik_client.models.flow_inspector_plan import FlowInspectorPlan

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

# convert the object into a dict
flow_inspector_plan_dict = flow_inspector_plan_instance.to_dict()
# create an instance of FlowInspectorPlan from a dict
flow_inspector_plan_from_dict = FlowInspectorPlan.from_dict(flow_inspector_plan_dict)

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