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

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

/**
 * element floating region dto
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ElementFloatingRegionDto extends TFloatingRegion {

  private ElementRegionDto region;

  public ElementRegionDto getRegion() {
    return region;
  }

  public void setRegion(ElementRegionDto region) {
    this.region = region;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy