/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; /** * 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 function instanceOfEndpointDeviceRequest(value: object): value is EndpointDeviceRequest { if (!('name' in value) || value['name'] === undefined) return false; return true; } export function EndpointDeviceRequestFromJSON(json: any): EndpointDeviceRequest { return EndpointDeviceRequestFromJSONTyped(json, false); } export function EndpointDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointDeviceRequest { if (json == null) { return json; } return { 'pk': json['pk'] == null ? undefined : json['pk'], 'name': json['name'], }; } export function EndpointDeviceRequestToJSON(json: any): EndpointDeviceRequest { return EndpointDeviceRequestToJSONTyped(json, false); } export function EndpointDeviceRequestToJSONTyped(value?: EndpointDeviceRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pk': value['pk'], 'name': value['name'], }; }