/** * 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 { StaticDevice } from './StaticDevice'; import type { Pagination } from './Pagination'; /** * * @export * @interface PaginatedStaticDeviceList */ export interface PaginatedStaticDeviceList { /** * * @type {Pagination} * @memberof PaginatedStaticDeviceList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedStaticDeviceList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedStaticDeviceList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedStaticDeviceList interface. */ export declare function instanceOfPaginatedStaticDeviceList(value: object): value is PaginatedStaticDeviceList; export declare function PaginatedStaticDeviceListFromJSON(json: any): PaginatedStaticDeviceList; export declare function PaginatedStaticDeviceListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedStaticDeviceList; export declare function PaginatedStaticDeviceListToJSON(json: any): PaginatedStaticDeviceList; export declare function PaginatedStaticDeviceListToJSONTyped(value?: PaginatedStaticDeviceList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedStaticDeviceList.d.ts.map