com.cisco.trex.stateless.model.stats.ActivePGIdsRPCResult 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;
@JsonIgnoreProperties(ignoreUnknown = true)
public class ActivePGIdsRPCResult {
@JsonProperty("ids")
private ActivePGIds ids = new ActivePGIds();
@JsonProperty("ids")
public ActivePGIds getIds() {
return ids;
}
@JsonProperty("ids")
public void setIds(final ActivePGIds ids) {
this.ids = ids;
}
}