/** * 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 an elevated access token * @export * @enum {string} */ export declare enum TokenScope { Credentiallink = "credential:link", Credentialupdate = "credential:update", Credentialunlink = "credential:unlink", Userupdate = "user:update", Userdelete = "user:delete", Walletexport = "wallet:export", Walletdelete = "wallet:delete", Walletdelegate = "wallet:delegate", Walletsign = "wallet:sign", Walletrestore = "wallet:restore" } export declare function TokenScopeFromJSON(json: any): TokenScope; export declare function TokenScopeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenScope; export declare function TokenScopeToJSON(value?: TokenScope | null): any;