Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1022 Bytes

File metadata and controls

31 lines (22 loc) · 1022 Bytes

FlowImportResult

Logs of an attempted flow import

Properties

Name Type Description Notes
logs List[LogEvent] [readonly]
success bool [readonly]

Example

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)

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