org.testobject.rest.api.model.StartInstrumentationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testobject-java-api Show documentation
Show all versions of testobject-java-api Show documentation
java wrapper for testobject's java apis
package org.testobject.rest.api.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class StartInstrumentationResponse {
private final long testReportId;
private final String testReportUrl;
public StartInstrumentationResponse(
@JsonProperty("testReportId") long testReportId,
@JsonProperty("testReportURL") String testReportURL
) {
this.testReportId = testReportId;
this.testReportUrl = testReportURL;
}
public long getTestReportId() {
return testReportId;
}
public String getTestReportUrl() {
return testReportUrl;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy