/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Valid scopes for a user JWT token * @export * @enum {string} */ export declare enum JwtScope { Userbasic = "user:basic", RequiresAdditionalAuth = "requiresAdditionalAuth", UserDataForm = "userDataForm", WaasBackupToken = "waasBackupToken", Deviceregister = "device:register" } export declare function JwtScopeFromJSON(json: any): JwtScope; export declare function JwtScopeFromJSONTyped(json: any, ignoreDiscriminator: boolean): JwtScope; export declare function JwtScopeToJSON(value?: JwtScope | null): any;