import * as $dara from '@darabonba/typescript'; export declare class UploadResponseBodyUploadResult extends $dara.Model { /** * @remarks * The ID of the SourceMap file. * * @example * 123 */ fid?: string; /** * @remarks * The name of the SourceMap file. * * @example * test.js.map */ fileName?: string; /** * @remarks * The time when the file was uploaded. * * @example * 1650272251 */ uploadTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UploadResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * A5EC8221-08F2-4C95-9AF1-49FD998C**** */ requestId?: string; /** * @remarks * The returned data. */ uploadResult?: UploadResponseBodyUploadResult; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }