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