All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cisco.trex.stateful.model.stats.LatencyData Maven / Gradle / Ivy

There is a newer version: 1.69
Show newest version
package com.cisco.trex.stateful.model.stats;

import com.google.gson.annotations.SerializedName;
import java.util.Map;

public class LatencyData {

  @SerializedName("cpu_util")
  public String cpuUtil;

  @SerializedName("epoch")
  public Integer epoch;

  public Map portLatencyDataMap;

  @SerializedName("unknown")
  public Integer unknown;

  @SerializedName("cpu_util")
  public String getCpuUtil() {
    return cpuUtil;
  }

  @SerializedName("cpu_util")
  public void setCpuUtil(String cpuUtil) {
    this.cpuUtil = cpuUtil;
  }

  @SerializedName("epoch")
  public Integer getEpoch() {
    return epoch;
  }

  @SerializedName("epoch")
  public void setEpoch(Integer epoch) {
    this.epoch = epoch;
  }

  public Map getPortLatencyDataMap() {
    return portLatencyDataMap;
  }

  public void setPortLatencyDataMap(Map portLatencyDataMap) {
    this.portLatencyDataMap = portLatencyDataMap;
  }

  @SerializedName("unknown")
  public Integer getUnknown() {
    return unknown;
  }

  @SerializedName("unknown")
  public void setUnknown(Integer unknown) {
    this.unknown = unknown;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy