/** * 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 { Metadata } from './Metadata'; /** * * @export * @interface BlueprintFile */ export interface BlueprintFile { /** * * @type {string} * @memberof BlueprintFile */ path: string; /** * * @type {Date} * @memberof BlueprintFile */ lastM: Date; /** * * @type {string} * @memberof BlueprintFile */ hash: string; /** * * @type {Metadata} * @memberof BlueprintFile */ readonly meta: Metadata; } /** * Check if a given object implements the BlueprintFile interface. */ export declare function instanceOfBlueprintFile(value: object): value is BlueprintFile; export declare function BlueprintFileFromJSON(json: any): BlueprintFile; export declare function BlueprintFileFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlueprintFile; export declare function BlueprintFileToJSON(json: any): BlueprintFile; export declare function BlueprintFileToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BlueprintFile.d.ts.map