/** * 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 Duo authenticator devices * @export * @interface DuoDeviceRequest */ export interface DuoDeviceRequest { /** * The human-readable name of this device. * @type {string} * @memberof DuoDeviceRequest */ name: string; } /** * Check if a given object implements the DuoDeviceRequest interface. */ export declare function instanceOfDuoDeviceRequest(value: object): value is DuoDeviceRequest; export declare function DuoDeviceRequestFromJSON(json: any): DuoDeviceRequest; export declare function DuoDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DuoDeviceRequest; export declare function DuoDeviceRequestToJSON(json: any): DuoDeviceRequest; export declare function DuoDeviceRequestToJSONTyped(value?: DuoDeviceRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DuoDeviceRequest.d.ts.map