/** * 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. */ /** * * @export * @interface TooManyRequests */ export interface TooManyRequests { /** * Human-readable error message indicating rate limit exceeded * @type {string} * @memberof TooManyRequests */ error?: string; } export declare function TooManyRequestsFromJSON(json: any): TooManyRequests; export declare function TooManyRequestsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TooManyRequests; export declare function TooManyRequestsToJSON(value?: TooManyRequests | null): any;