/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { metricsV1GetMetricsDeprecated } from "../funcs/metricsV1GetMetricsDeprecated.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class MetricsV1 extends ClientSDK { /** * GetMetricsDeprecated * * @remarks * Get metrics for a [process](https://hathora.dev/docs/concepts/hathora-entities#process) using `appId` and `processId`. * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ async getMetricsDeprecated( request: operations.GetMetricsDeprecatedRequest, options?: RequestOptions, ): Promise { return unwrapAsync(metricsV1GetMetricsDeprecated( this, request, options, )); } }