/** * 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 { OrganizationRequest } from './OrganizationRequest'; import type { BlueprintVersionRequest } from './BlueprintVersionRequest'; import type { UserRequest } from './UserRequest'; /** * * @export * @interface BlueprintRequest */ export interface BlueprintRequest { /** * * @type {string} * @memberof BlueprintRequest */ ownerOrg?: string | null; /** * * @type {OrganizationRequest} * @memberof BlueprintRequest */ ownerOrgObj: OrganizationRequest; /** * * @type {string} * @memberof BlueprintRequest */ ownerUser?: string | null; /** * * @type {UserRequest} * @memberof BlueprintRequest */ ownerUserObj: UserRequest; /** * * @type {string} * @memberof BlueprintRequest */ slug: string; /** * * @type {string} * @memberof BlueprintRequest */ summary?: string; /** * * @type {BlueprintVersionRequest} * @memberof BlueprintRequest */ latestVersion?: BlueprintVersionRequest; /** * * @type {Array} * @memberof BlueprintRequest */ tags: Array; } /** * Check if a given object implements the BlueprintRequest interface. */ export declare function instanceOfBlueprintRequest(value: object): value is BlueprintRequest; export declare function BlueprintRequestFromJSON(json: any): BlueprintRequest; export declare function BlueprintRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlueprintRequest; export declare function BlueprintRequestToJSON(json: any): BlueprintRequest; export declare function BlueprintRequestToJSONTyped(value?: BlueprintRequest | null, ignoreDiscriminator?: boolean): any;