/** * 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 EndpointDeviceRequest */ export interface EndpointDeviceRequest { /** * * @type {string} * @memberof EndpointDeviceRequest */ pk?: string; /** * The human-readable name of this device. * @type {string} * @memberof EndpointDeviceRequest */ name: string; } /** * Check if a given object implements the EndpointDeviceRequest interface. */ export declare function instanceOfEndpointDeviceRequest(value: object): value is EndpointDeviceRequest; export declare function EndpointDeviceRequestFromJSON(json: any): EndpointDeviceRequest; export declare function EndpointDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointDeviceRequest; export declare function EndpointDeviceRequestToJSON(json: any): EndpointDeviceRequest; export declare function EndpointDeviceRequestToJSONTyped(value?: EndpointDeviceRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EndpointDeviceRequest.d.ts.map