import * as $dara from '@darabonba/typescript'; export declare class GetRumUploadFilesResponseBodyDataFileList extends $dara.Model { fileName?: string; lastModifiedTime?: any; size?: string; uuid?: string; versionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetRumUploadFilesResponseBodyData extends $dara.Model { fileList?: GetRumUploadFilesResponseBodyDataFileList[]; nextToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetRumUploadFilesResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. Other status codes indicate that the request failed. * * @example * 200 */ code?: number; /** * @remarks * The queried files. */ data?: GetRumUploadFilesResponseBodyData; /** * @remarks * The HTTP status code. * * @example * 200 */ httpStatusCode?: number; /** * @remarks * The error message returned if the request failed. * * @example * success */ message?: string; /** * @remarks * The request ID. * * @example * 2983BEF7-4A0D-47A2-94A2-8E9C5E63**** */ requestId?: string; /** * @remarks * Indicates whether the request was 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; }); }