/** * Shell EVLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { ApiError } from '../core'; import { RatelimitErrMsg } from '../models/ratelimitErrMsg'; /** * Creates an instance of TooManyRequests */ interface TooManyRequests { /** RequestID is unique identifier value that is attached to requests and messages that allow reference to a particular transaction or event chain. */ requestId?: string; /** Status of the request */ status?: string; /** Exception details of the error */ errors?: RatelimitErrMsg[]; } export declare class TooManyRequestsError extends ApiError { } export {};