/** * 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 device's tokens * @export * @interface StaticDeviceToken */ export interface StaticDeviceToken { /** * * @type {string} * @memberof StaticDeviceToken */ token: string; } /** * Check if a given object implements the StaticDeviceToken interface. */ export declare function instanceOfStaticDeviceToken(value: object): value is StaticDeviceToken; export declare function StaticDeviceTokenFromJSON(json: any): StaticDeviceToken; export declare function StaticDeviceTokenFromJSONTyped(json: any, ignoreDiscriminator: boolean): StaticDeviceToken; export declare function StaticDeviceTokenToJSON(json: any): StaticDeviceToken; export declare function StaticDeviceTokenToJSONTyped(value?: StaticDeviceToken | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=StaticDeviceToken.d.ts.map