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