/** * 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 { Token } from './Token'; /** * * @export * @interface PaginatedTokenList */ export interface PaginatedTokenList { /** * * @type {Pagination} * @memberof PaginatedTokenList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedTokenList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedTokenList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedTokenList interface. */ export declare function instanceOfPaginatedTokenList(value: object): value is PaginatedTokenList; export declare function PaginatedTokenListFromJSON(json: any): PaginatedTokenList; export declare function PaginatedTokenListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedTokenList; export declare function PaginatedTokenListToJSON(json: any): PaginatedTokenList; export declare function PaginatedTokenListToJSONTyped(value?: PaginatedTokenList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedTokenList.d.ts.map