import * as $dara from '@darabonba/typescript'; export declare class GetSourceMapInfoRequest extends $dara.Model { /** * @remarks * The order in which the files are sorted. Valid values: * * * true: ascending order * * false: descending order * * @example * true */ ascendingSequence?: boolean; /** * @remarks * The version of the SourceMap file. * * @example * 0.0.0 */ edition?: string; /** * @remarks * The ID of the SourceMap file. * * This parameter is required. */ ID?: string; /** * @remarks * The keyword in the file name. The files are searched by keyword. * * @example * test */ keyword?: string; /** * @remarks * The criterion by which the files are sorted. Valid values: * * * version: The files are sorted by version. * * uploadTime: The files are sorted by upload time. * * @example * version */ orderField?: string; /** * @remarks * The ID of the region. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }