com.applitools.eyes.universal.dto.TAccessibilityRegion 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;
/**
* accessibility region
*/
public abstract class TAccessibilityRegion {
protected String type;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}