/** * mongocamp-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Measurement } from './Measurement'; /** * * @export * @interface Metric */ export interface Metric { /** * * @type {string} * @memberof Metric */ name: string; /** * * @type {string} * @memberof Metric */ metricsType: string; /** * * @type {string} * @memberof Metric */ description: string; /** * * @type {string} * @memberof Metric */ baseUnit: string; /** * * @type {Array} * @memberof Metric */ measurements?: Array; } export declare function MetricFromJSON(json: any): Metric; export declare function MetricFromJSONTyped(json: any, ignoreDiscriminator: boolean): Metric; export declare function MetricToJSON(value?: Metric | null): any;