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