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

com.applitools.eyes.universal.dto.ContextReferenceDto Maven / Gradle / Ivy

There is a newer version: 5.76.0
Show newest version
package com.applitools.eyes.universal.dto;

import com.fasterxml.jackson.annotation.JsonInclude;

/**
 * context reference dto
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ContextReferenceDto {
  private Object frame;
  private TRegion scrollRootElement;

  public Object getFrame() {
    return frame;
  }

  public void setFrame(Object frame) {
    this.frame = frame;
  }

  public TRegion getScrollRootElement() {
    return scrollRootElement;
  }

  public void setScrollRootElement(TRegion scrollRootElement) {
    this.scrollRootElement = scrollRootElement;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy