/* 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 PatchedEndpointDeviceRequest */ export interface PatchedEndpointDeviceRequest { /** * * @type {string} * @memberof PatchedEndpointDeviceRequest */ pk?: string; /** * The human-readable name of this device. * @type {string} * @memberof PatchedEndpointDeviceRequest */ name?: string; } /** * Check if a given object implements the PatchedEndpointDeviceRequest interface. */ export function instanceOfPatchedEndpointDeviceRequest(value: object): value is PatchedEndpointDeviceRequest { return true; } export function PatchedEndpointDeviceRequestFromJSON(json: any): PatchedEndpointDeviceRequest { return PatchedEndpointDeviceRequestFromJSONTyped(json, false); } export function PatchedEndpointDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedEndpointDeviceRequest { if (json == null) { return json; } return { 'pk': json['pk'] == null ? undefined : json['pk'], 'name': json['name'] == null ? undefined : json['name'], }; } export function PatchedEndpointDeviceRequestToJSON(json: any): PatchedEndpointDeviceRequest { return PatchedEndpointDeviceRequestToJSONTyped(json, false); } export function PatchedEndpointDeviceRequestToJSONTyped(value?: PatchedEndpointDeviceRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pk': value['pk'], 'name': value['name'], }; }