com.applitools.eyes.universal.dto.TestResultContainerDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-core-java5 Show documentation
Show all versions of eyes-sdk-core-java5 Show documentation
Applitools Eyes SDK base for Java
package com.applitools.eyes.universal.dto;
import com.applitools.eyes.EyesError;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* Test result container dto
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class TestResultContainerDto {
private TestResultsDto result;
private EyesError error;
private ExactEnvironment environment;
private String userTestId;
public TestResultContainerDto() {
}
public TestResultContainerDto(TestResultsDto result, EyesError error, ExactEnvironment environment, String userTestId) {
this.result = result;
this.error = error;
this.environment = environment;
this.userTestId = userTestId;
}
public TestResultsDto getResult() {
return result;
}
public void setResult(TestResultsDto result) {
this.result = result;
}
public EyesError getError() {
return error;
}
public void setError(EyesError error) {
this.error = error;
}
public ExactEnvironment getEnvironment() {
return environment;
}
public void setEnvironment(ExactEnvironment environment) {
this.environment = environment;
}
public String getUserTestId() {
return userTestId;
}
public void setUserTestId(String userTestId) {
this.userTestId = userTestId;
}
}