/** * 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'; /** * * @export * @interface PaginatedBlueprintVersionList */ export interface PaginatedBlueprintVersionList { /** * * @type {number} * @memberof PaginatedBlueprintVersionList */ count: number; /** * * @type {string} * @memberof PaginatedBlueprintVersionList */ next?: string | null; /** * * @type {string} * @memberof PaginatedBlueprintVersionList */ previous?: string | null; /** * * @type {Array} * @memberof PaginatedBlueprintVersionList */ results: Array; } /** * Check if a given object implements the PaginatedBlueprintVersionList interface. */ export declare function instanceOfPaginatedBlueprintVersionList(value: object): value is PaginatedBlueprintVersionList; export declare function PaginatedBlueprintVersionListFromJSON(json: any): PaginatedBlueprintVersionList; export declare function PaginatedBlueprintVersionListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedBlueprintVersionList; export declare function PaginatedBlueprintVersionListToJSON(json: any): PaginatedBlueprintVersionList; export declare function PaginatedBlueprintVersionListToJSONTyped(value?: PaginatedBlueprintVersionList | null, ignoreDiscriminator?: boolean): any;