/** * 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 type { GroupMember } from './GroupMember'; /** * Serializer for sms authenticator devices * @export * @interface SMSDevice */ export interface SMSDevice { /** * The human-readable name of this device. * @type {string} * @memberof SMSDevice */ name: string; /** * * @type {number} * @memberof SMSDevice */ readonly pk: number; /** * * @type {string} * @memberof SMSDevice */ readonly phoneNumber: string; /** * * @type {GroupMember} * @memberof SMSDevice */ readonly user: GroupMember; } /** * Check if a given object implements the SMSDevice interface. */ export declare function instanceOfSMSDevice(value: object): value is SMSDevice; export declare function SMSDeviceFromJSON(json: any): SMSDevice; export declare function SMSDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SMSDevice; export declare function SMSDeviceToJSON(json: any): SMSDevice; export declare function SMSDeviceToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SMSDevice.d.ts.map