com.cisco.trex.stateless.model.ApiVersionHandler 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;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class ApiVersionHandler {
@JsonProperty("type")
private String type;
@JsonProperty("api_h")
private String apiH;
@JsonProperty("type")
public String getType() {
return type;
}
@JsonProperty("type")
public void setType(String type) {
this.type = type;
}
@JsonProperty("api_h")
public String getApiH() {
return apiH;
}
@JsonProperty("api_h")
public void setApiH(String apiH) {
this.apiH = apiH;
}
}