/** * 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 BlueprintVersion */ export interface BlueprintVersion { /** * * @type {number} * @memberof BlueprintVersion */ readonly id: number; /** * * @type {number} * @memberof BlueprintVersion */ blueprint: number; /** * * @type {number} * @memberof BlueprintVersion */ version: number; /** * * @type {string} * @memberof BlueprintVersion */ description?: string; /** * * @type {string} * @memberof BlueprintVersion */ changelog?: string; /** * * @type {string} * @memberof BlueprintVersion */ definition: string; /** * * @type {Date} * @memberof BlueprintVersion */ readonly createdAt: Date; /** * * @type {Array} * @memberof BlueprintVersion */ compatibleAuthentikVersions?: Array; } /** * Check if a given object implements the BlueprintVersion interface. */ export declare function instanceOfBlueprintVersion(value: object): value is BlueprintVersion; export declare function BlueprintVersionFromJSON(json: any): BlueprintVersion; export declare function BlueprintVersionFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlueprintVersion; export declare function BlueprintVersionToJSON(json: any): BlueprintVersion; export declare function BlueprintVersionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;