/** * 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 StaticDeviceTokenRequest */ export interface StaticDeviceTokenRequest { /** * * @type {string} * @memberof StaticDeviceTokenRequest */ token: string; } /** * Check if a given object implements the StaticDeviceTokenRequest interface. */ export declare function instanceOfStaticDeviceTokenRequest(value: object): value is StaticDeviceTokenRequest; export declare function StaticDeviceTokenRequestFromJSON(json: any): StaticDeviceTokenRequest; export declare function StaticDeviceTokenRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): StaticDeviceTokenRequest; export declare function StaticDeviceTokenRequestToJSON(json: any): StaticDeviceTokenRequest; export declare function StaticDeviceTokenRequestToJSONTyped(value?: StaticDeviceTokenRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=StaticDeviceTokenRequest.d.ts.map