/** * 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. */ /** * Serializer for Endpoint authenticator devices * @export * @interface EndpointDevice */ export interface EndpointDevice { /** * * @type {string} * @memberof EndpointDevice */ pk?: string; /** * The human-readable name of this device. * @type {string} * @memberof EndpointDevice */ name: string; } /** * Check if a given object implements the EndpointDevice interface. */ export declare function instanceOfEndpointDevice(value: object): value is EndpointDevice; export declare function EndpointDeviceFromJSON(json: any): EndpointDevice; export declare function EndpointDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointDevice; export declare function EndpointDeviceToJSON(json: any): EndpointDevice; export declare function EndpointDeviceToJSONTyped(value?: EndpointDevice | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EndpointDevice.d.ts.map