cloudflare
Version:
The official TypeScript library for the Cloudflare API
15 lines • 566 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../../../resource.mjs";
export class Bytimes extends APIResource {
/**
* Retrieves a list of aggregate metrics grouped by time interval.
*/
get(params, options) {
const { zone_id, ...query } = params;
return this._client.get(`/zones/${zone_id}/spectrum/analytics/events/bytime`, {
query,
...options,
})._thenUnwrap((obj) => obj.result);
}
}
//# sourceMappingURL=bytimes.mjs.map