/** * 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 { User } from './User'; /** * * @export * @interface PaginatedUserList */ export interface PaginatedUserList { /** * * @type {number} * @memberof PaginatedUserList */ count: number; /** * * @type {string} * @memberof PaginatedUserList */ next?: string | null; /** * * @type {string} * @memberof PaginatedUserList */ previous?: string | null; /** * * @type {Array} * @memberof PaginatedUserList */ results: Array; } /** * Check if a given object implements the PaginatedUserList interface. */ export declare function instanceOfPaginatedUserList(value: object): value is PaginatedUserList; export declare function PaginatedUserListFromJSON(json: any): PaginatedUserList; export declare function PaginatedUserListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedUserList; export declare function PaginatedUserListToJSON(json: any): PaginatedUserList; export declare function PaginatedUserListToJSONTyped(value?: PaginatedUserList | null, ignoreDiscriminator?: boolean): any;