com.applitools.eyes.playwright.universal.driver.dto.DriverInfoDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-playwright-java5 Show documentation
Show all versions of eyes-playwright-java5 Show documentation
Applitools Eyes SDK for Playwright Java
package com.applitools.eyes.playwright.universal.driver.dto;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.Objects;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class DriverInfoDto {
private DriverInfoFeaturesDto features;
public DriverInfoDto() {
this.features = new DriverInfoFeaturesDto();
}
public DriverInfoFeaturesDto getFeatures() {
return features;
}
public void setFeatures(DriverInfoFeaturesDto features) {
this.features = features;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DriverInfoDto that = (DriverInfoDto) o;
return Objects.equals(features, that.features);
}
@Override
public int hashCode() {
return Objects.hash(features);
}
@Override
public String toString() {
return "DriverInfoDto{" +
"features=" + features +
'}';
}
}