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