import * as $dara from '@darabonba/typescript'; export declare class UpdateRumAppResponseBodyData extends $dara.Model { /** * @remarks * The user configurations. This is a reserved parameter. * * @example * null */ config?: string; /** * @remarks * The QPS limit. Unit: bytes. * * @example * 100000 */ limit?: number; /** * @remarks * Indicates whether the request is throttled due to the QPS limit. Valid values: true and false. * * @example * true */ limited?: boolean; /** * @remarks * The usage. Unit: bytes. * * @example * 10000 */ usage?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UpdateRumAppResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. * * @example * 200 */ code?: string; /** * @remarks * The details of the returned results. */ data?: UpdateRumAppResponseBodyData; /** * @remarks * The HTTP status code. * * @example * 200 */ httpStatusCode?: string; /** * @remarks * The error message returned if the request failed. * * @example * message */ message?: string; /** * @remarks * The request ID. * * @example * E9C9DA3D-10FE-472E-9EEF-2D0A3E41**** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * * `true` * * `false` * * @example * true */ success?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }