/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0 * 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 blueprint import * @export * @interface BlueprintImportResult */ export interface BlueprintImportResult { /** * * @type {Array} * @memberof BlueprintImportResult */ readonly logs: Array; /** * * @type {boolean} * @memberof BlueprintImportResult */ readonly success: boolean; } /** * Check if a given object implements the BlueprintImportResult interface. */ export declare function instanceOfBlueprintImportResult(value: object): value is BlueprintImportResult; export declare function BlueprintImportResultFromJSON(json: any): BlueprintImportResult; export declare function BlueprintImportResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlueprintImportResult; export declare function BlueprintImportResultToJSON(json: any): BlueprintImportResult; export declare function BlueprintImportResultToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BlueprintImportResult.d.ts.map