/** * 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 PatchedBlueprintRequest */ export interface PatchedBlueprintRequest { /** * * @type {string} * @memberof PatchedBlueprintRequest */ ownerOrg?: string | null; /** * * @type {OrganizationRequest} * @memberof PatchedBlueprintRequest */ ownerOrgObj?: OrganizationRequest; /** * * @type {string} * @memberof PatchedBlueprintRequest */ ownerUser?: string | null; /** * * @type {UserRequest} * @memberof PatchedBlueprintRequest */ ownerUserObj?: UserRequest; /** * * @type {string} * @memberof PatchedBlueprintRequest */ slug?: string; /** * * @type {string} * @memberof PatchedBlueprintRequest */ summary?: string; /** * * @type {BlueprintVersionRequest} * @memberof PatchedBlueprintRequest */ latestVersion?: BlueprintVersionRequest; /** * * @type {Array} * @memberof PatchedBlueprintRequest */ tags?: Array; } /** * Check if a given object implements the PatchedBlueprintRequest interface. */ export declare function instanceOfPatchedBlueprintRequest(value: object): value is PatchedBlueprintRequest; export declare function PatchedBlueprintRequestFromJSON(json: any): PatchedBlueprintRequest; export declare function PatchedBlueprintRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedBlueprintRequest; export declare function PatchedBlueprintRequestToJSON(json: any): PatchedBlueprintRequest; export declare function PatchedBlueprintRequestToJSONTyped(value?: PatchedBlueprintRequest | null, ignoreDiscriminator?: boolean): any;