/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { EnrollmentToken } from './EnrollmentToken'; import type { Pagination } from './Pagination'; /** * * @export * @interface PaginatedEnrollmentTokenList */ export interface PaginatedEnrollmentTokenList { /** * * @type {Pagination} * @memberof PaginatedEnrollmentTokenList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedEnrollmentTokenList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedEnrollmentTokenList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedEnrollmentTokenList interface. */ export declare function instanceOfPaginatedEnrollmentTokenList(value: object): value is PaginatedEnrollmentTokenList; export declare function PaginatedEnrollmentTokenListFromJSON(json: any): PaginatedEnrollmentTokenList; export declare function PaginatedEnrollmentTokenListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedEnrollmentTokenList; export declare function PaginatedEnrollmentTokenListToJSON(json: any): PaginatedEnrollmentTokenList; export declare function PaginatedEnrollmentTokenListToJSONTyped(value?: PaginatedEnrollmentTokenList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedEnrollmentTokenList.d.ts.map