/** * 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. */ /** * * @export * @interface BlueprintVersionRequest */ export interface BlueprintVersionRequest { /** * * @type {number} * @memberof BlueprintVersionRequest */ blueprint: number; /** * * @type {number} * @memberof BlueprintVersionRequest */ version: number; /** * * @type {string} * @memberof BlueprintVersionRequest */ description?: string; /** * * @type {string} * @memberof BlueprintVersionRequest */ changelog?: string; /** * * @type {string} * @memberof BlueprintVersionRequest */ definition: string; /** * * @type {Array} * @memberof BlueprintVersionRequest */ compatibleAuthentikVersions?: Array; } /** * Check if a given object implements the BlueprintVersionRequest interface. */ export declare function instanceOfBlueprintVersionRequest(value: object): value is BlueprintVersionRequest; export declare function BlueprintVersionRequestFromJSON(json: any): BlueprintVersionRequest; export declare function BlueprintVersionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlueprintVersionRequest; export declare function BlueprintVersionRequestToJSON(json: any): BlueprintVersionRequest; export declare function BlueprintVersionRequestToJSONTyped(value?: BlueprintVersionRequest | null, ignoreDiscriminator?: boolean): any;