Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

FlowInspection

Serializer for inspect endpoint

Properties

Name Type Description Notes
plans List[FlowInspectorPlan]
current_plan FlowInspectorPlan [optional]
is_completed bool

Example

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)

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