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