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

com.applitools.eyes.selenium.universal.dto.ElementAccessibilityRegionDto Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy