Serializer for inspect endpoint
| Name | Type | Description | Notes |
|---|---|---|---|
| plans | List[FlowInspectorPlan] | ||
| current_plan | FlowInspectorPlan | [optional] | |
| is_completed | bool |
from authentik_client.models.flow_inspection import FlowInspection
# TODO update the JSON string below
json = "{}"
# create an instance of FlowInspection from a JSON string
flow_inspection_instance = FlowInspection.from_json(json)
# print the JSON string representation of the object
print(FlowInspection.to_json())
# convert the object into a dict
flow_inspection_dict = flow_inspection_instance.to_dict()
# create an instance of FlowInspection from a dict
flow_inspection_from_dict = FlowInspection.from_dict(flow_inspection_dict)