/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * 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 { Pagination } from './Pagination'; import type { User } from './User'; /** * * @export * @interface PaginatedUserList */ export interface PaginatedUserList { /** * * @type {Pagination} * @memberof PaginatedUserList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedUserList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedUserList */ autocomplete: { [key: string]: any; }; } /** * 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; //# sourceMappingURL=PaginatedUserList.d.ts.map