/** * authentik Blueprint Registry * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: * 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 { BlueprintVersion } from './BlueprintVersion'; import type { Organization } from './Organization'; import type { User } from './User'; /** * * @export * @interface Blueprint */ export interface Blueprint { /** * * @type {number} * @memberof Blueprint */ readonly id: number; /** * * @type {string} * @memberof Blueprint */ ownerOrg?: string | null; /** * * @type {Organization} * @memberof Blueprint */ ownerOrgObj: Organization; /** * * @type {string} * @memberof Blueprint */ ownerUser?: string | null; /** * * @type {User} * @memberof Blueprint */ ownerUserObj: User; /** * * @type {string} * @memberof Blueprint */ slug: string; /** * * @type {string} * @memberof Blueprint */ summary?: string; /** * * @type {BlueprintVersion} * @memberof Blueprint */ latestVersion?: BlueprintVersion; /** * * @type {Array} * @memberof Blueprint */ tags: Array; } /** * Check if a given object implements the Blueprint interface. */ export declare function instanceOfBlueprint(value: object): value is Blueprint; export declare function BlueprintFromJSON(json: any): Blueprint; export declare function BlueprintFromJSONTyped(json: any, ignoreDiscriminator: boolean): Blueprint; export declare function BlueprintToJSON(json: any): Blueprint; export declare function BlueprintToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;