Logs of an attempted flow import
| Name | Type | Description | Notes |
|---|---|---|---|
| logs | List[LogEvent] | [readonly] | |
| success | bool | [readonly] |
from authentik_client.models.flow_import_result import FlowImportResult
# TODO update the JSON string below
json = "{}"
# create an instance of FlowImportResult from a JSON string
flow_import_result_instance = FlowImportResult.from_json(json)
# print the JSON string representation of the object
print(FlowImportResult.to_json())
# convert the object into a dict
flow_import_result_dict = flow_import_result_instance.to_dict()
# create an instance of FlowImportResult from a dict
flow_import_result_from_dict = FlowImportResult.from_dict(flow_import_result_dict)