/** * Hathora Cloud API * Welcome to the Hathora Cloud API documentation! Learn how to use the Hathora Cloud APIs to build and scale your game servers globally. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface MetricValue */ export interface MetricValue { /** * * @type {number} * @memberof MetricValue */ value: number; /** * * @type {number} * @memberof MetricValue */ timestamp: number; } /** * Check if a given object implements the MetricValue interface. */ export declare function instanceOfMetricValue(value: object): boolean; export declare function MetricValueFromJSON(json: any): MetricValue; export declare function MetricValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): MetricValue; export declare function MetricValueToJSON(value?: MetricValue | null): any;