
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace HathoraCloud.Models.Shared
{
    using HathoraCloud.Models.Shared;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    using System;
    using UnityEngine;
    
    [Serializable]
    public class ProcessMetricsData
    {

        [SerializeField]
        [JsonProperty("activeConnections")]
        public List<MetricValue>? ActiveConnections { get; set; }

        [SerializeField]
        [JsonProperty("cpu")]
        public List<MetricValue>? Cpu { get; set; }

        [SerializeField]
        [JsonProperty("memory")]
        public List<MetricValue>? Memory { get; set; }

        [SerializeField]
        [JsonProperty("rateEgress")]
        public List<MetricValue>? RateEgress { get; set; }

        [SerializeField]
        [JsonProperty("totalEgress")]
        public List<MetricValue>? TotalEgress { get; set; }
    }
}