automation.library.conversion2jmx.postman2jmx.model.postman.PostmanFileBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library-conversion2jmx Show documentation
Show all versions of library-conversion2jmx Show documentation
The 'conversion2jmx' library to helps creating JMeter JMX files from different sources
The newest version!
package automation.library.conversion2jmx.postman2jmx.model.postman;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class PostmanFileBody {
@JsonProperty("src")
private String src;
public PostmanFileBody() {
}
public PostmanFileBody(String src) {
this.src = src;
}
public String getSrc() {
return src;
}
public void setSrc(String src) {
this.src = src;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy