/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { FlowInspectorPlan } from './FlowInspectorPlan'; /** * Serializer for inspect endpoint * @export * @interface FlowInspection */ export interface FlowInspection { /** * * @type {Array} * @memberof FlowInspection */ plans: Array; /** * * @type {FlowInspectorPlan} * @memberof FlowInspection */ currentPlan?: FlowInspectorPlan; /** * * @type {boolean} * @memberof FlowInspection */ isCompleted: boolean; } /** * Check if a given object implements the FlowInspection interface. */ export declare function instanceOfFlowInspection(value: object): value is FlowInspection; export declare function FlowInspectionFromJSON(json: any): FlowInspection; export declare function FlowInspectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowInspection; export declare function FlowInspectionToJSON(json: any): FlowInspection; export declare function FlowInspectionToJSONTyped(value?: FlowInspection | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FlowInspection.d.ts.map