import * as $dara from '@darabonba/typescript'; export declare class GetSourceMapInfoResponseBodySourceMapList extends $dara.Model { /** * @remarks * The ID of the SourceMap file. */ fid?: string; /** * @remarks * The name of the SourceMap file. * * @example * test.sourcemap.js */ fileName?: string; /** * @remarks * The size of the file. Unit: KB. * * @example * 201223 */ size?: string; /** * @remarks * The timestamp that indicates when the file was uploaded. * * @example * 1590657842000 */ uploadTime?: string; /** * @remarks * The version of the file. * * @example * 0.0.0 */ version?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetSourceMapInfoResponseBody extends $dara.Model { /** * @remarks * The ID of the request. * * @example * C21AB7CF-B7AF-410F-BD61-82D1567F**** */ requestId?: string; /** * @remarks * The details of the SourceMap file. */ sourceMapList?: GetSourceMapInfoResponseBodySourceMapList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }