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