com.cisco.trex.stateless.model.stats.PGIdStatsRPCResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trex-java-sdk Show documentation
Show all versions of trex-java-sdk Show documentation
Java client SDK provides an implementation for TRex RPC APIs
package com.cisco.trex.stateless.model.stats;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.HashMap;
import java.util.Map;
@JsonIgnoreProperties(ignoreUnknown = true)
public class PGIdStatsRPCResult {
@JsonProperty("flow_stats")
private Map flowStats = new HashMap<>();
@JsonProperty("latency")
private Map latency = new HashMap<>();
@JsonProperty("ver_id")
private Map verId = new HashMap<>();
@JsonProperty("flow_stats")
public Map getFlowStats() {
return flowStats;
}
@JsonProperty("flow_stats")
public void setFlowStats(final Map flowStats) {
this.flowStats = flowStats;
}
@JsonProperty("latency")
public Map getLatency() {
return latency;
}
@JsonProperty("latency")
public void setLatency(final Map latency) {
this.latency = latency;
}
@JsonProperty("ver_id")
public Map getVerId() {
return verId;
}
@JsonProperty("ver_id")
public void setVerId(final Map verId) {
this.verId = verId;
}
}