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

com.applitools.eyes.selenium.universal.dto.ElementRegionDto 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.TRegion;
import com.fasterxml.jackson.annotation.JsonInclude;

/**
 * element region dto
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ElementRegionDto extends TRegion {
  private String elementId;

  public String getElementId() {
    return elementId;
  }

  public void setElementId(String elementId) {
    this.elementId = elementId;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy