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