com.applitools.eyes.selenium.universal.dto.ElementAccessibilityRegionDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java5 Show documentation
Show all versions of eyes-selenium-java5 Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
package com.applitools.eyes.selenium.universal.dto;
import com.applitools.eyes.universal.dto.TAccessibilityRegion;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* element accessibility region dto
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ElementAccessibilityRegionDto extends TAccessibilityRegion {
private ElementRegionDto region;
public ElementRegionDto getRegion() {
return region;
}
public void setRegion(ElementRegionDto region) {
this.region = region;
}
}