import * as $dara from '@darabonba/typescript'; export declare class DeleteRumUploadFileResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. * * @example * 200 */ code?: number; /** * @remarks * Indicates whether the file is deleted. If the file is deleted, "success" is returned. * * @example * success */ data?: string; /** * @remarks * The HTTP status code. * * @example * 200 */ httpStatusCode?: number; /** * @remarks * The error message. * * @example * Internal error, please contact the administrator. */ message?: string; /** * @remarks * The request ID. * * @example * 40B10E04-81E8-4643-970D-F1B38F2E**** */ requestId?: string; /** * @remarks * Indicates whether the request is successful. Valid values: * * * `true` * * `false` * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }