import * as $dara from '@darabonba/typescript'; export declare class DescribeMeterImsMediaConvertUHDUsageRequest extends $dara.Model { /** * @remarks * The end of the time range to query. The value is a 10-digit timestamp. * * This parameter is required. * * @example * 1656995036 */ endTs?: number; /** * @remarks * The time granularity of the query. Valid values: 3600 (hour) and 86400 (day). * * This parameter is required. * * @example * 3600 */ interval?: string; /** * @remarks * This parameter does not take effect. By default, the usage data of all regions is returned. * * @example * cn-shanghai */ regionId?: string; /** * @remarks * The beginning of the time range to query. The value is a 10-digit timestamp. * * This parameter is required. * * @example * 1654403036 */ startTs?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }