/** * 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 { LogEvent } from './LogEvent'; /** * Logs of an attempted flow import * @export * @interface FlowImportResult */ export interface FlowImportResult { /** * * @type {Array} * @memberof FlowImportResult */ readonly logs: Array; /** * * @type {boolean} * @memberof FlowImportResult */ readonly success: boolean; } /** * Check if a given object implements the FlowImportResult interface. */ export declare function instanceOfFlowImportResult(value: object): value is FlowImportResult; export declare function FlowImportResultFromJSON(json: any): FlowImportResult; export declare function FlowImportResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowImportResult; export declare function FlowImportResultToJSON(json: any): FlowImportResult; export declare function FlowImportResultToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FlowImportResult.d.ts.map