/* 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'; /** * * @export * @interface AuthenticatorDuoStageManualDeviceImportRequest */ export interface AuthenticatorDuoStageManualDeviceImportRequest { /** * * @type {string} * @memberof AuthenticatorDuoStageManualDeviceImportRequest */ duoUserId: string; /** * * @type {string} * @memberof AuthenticatorDuoStageManualDeviceImportRequest */ username: string; } /** * Check if a given object implements the AuthenticatorDuoStageManualDeviceImportRequest interface. */ export function instanceOfAuthenticatorDuoStageManualDeviceImportRequest(value: object): value is AuthenticatorDuoStageManualDeviceImportRequest { if (!('duoUserId' in value) || value['duoUserId'] === undefined) return false; if (!('username' in value) || value['username'] === undefined) return false; return true; } export function AuthenticatorDuoStageManualDeviceImportRequestFromJSON(json: any): AuthenticatorDuoStageManualDeviceImportRequest { return AuthenticatorDuoStageManualDeviceImportRequestFromJSONTyped(json, false); } export function AuthenticatorDuoStageManualDeviceImportRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorDuoStageManualDeviceImportRequest { if (json == null) { return json; } return { 'duoUserId': json['duo_user_id'], 'username': json['username'], }; } export function AuthenticatorDuoStageManualDeviceImportRequestToJSON(json: any): AuthenticatorDuoStageManualDeviceImportRequest { return AuthenticatorDuoStageManualDeviceImportRequestToJSONTyped(json, false); } export function AuthenticatorDuoStageManualDeviceImportRequestToJSONTyped(value?: AuthenticatorDuoStageManualDeviceImportRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'duo_user_id': value['duoUserId'], 'username': value['username'], }; }