All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testobject.rest.api.model.StartInstrumentationResponse Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
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