/** * 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. */ /** * Info about a single blueprint instance file * @export * @interface BlueprintInstanceRequest */ export interface BlueprintInstanceRequest { /** * * @type {string} * @memberof BlueprintInstanceRequest */ name: string; /** * * @type {string} * @memberof BlueprintInstanceRequest */ path?: string; /** * * @type {{ [key: string]: any; }} * @memberof BlueprintInstanceRequest */ context?: { [key: string]: any; }; /** * * @type {boolean} * @memberof BlueprintInstanceRequest */ enabled?: boolean; /** * * @type {string} * @memberof BlueprintInstanceRequest */ content?: string; } /** * Check if a given object implements the BlueprintInstanceRequest interface. */ export declare function instanceOfBlueprintInstanceRequest(value: object): value is BlueprintInstanceRequest; export declare function BlueprintInstanceRequestFromJSON(json: any): BlueprintInstanceRequest; export declare function BlueprintInstanceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlueprintInstanceRequest; export declare function BlueprintInstanceRequestToJSON(json: any): BlueprintInstanceRequest; export declare function BlueprintInstanceRequestToJSONTyped(value?: BlueprintInstanceRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BlueprintInstanceRequest.d.ts.map