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

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

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

import com.applitools.eyes.universal.Reference;
import java.util.List;


/**
 * extract text dto
 */
public class ExtractTextDto {

  /**
   * the target
   */
  private ITargetDto target;

  /**
   * ocr extract settings
   */
  private List settings;


  /**
   * configuration object that will be associated with a new eyes object, it could be overridden later
   */
  private ConfigurationDto config;

  public ExtractTextDto(ITargetDto target, List regions, ConfigurationDto config) {
    this.settings = regions;
    this.config = config;
    this.target = target;
  }

  public List getSettings() {
    return settings;
  }

  public void setSettings(List settings) {
    this.settings = settings;
  }

  public ConfigurationDto getConfig() {
    return config;
  }

  public void setConfig(ConfigurationDto config) {
    this.config = config;
  }

  public ITargetDto getTarget() {
    return target;
  }

  public void setTarget(ITargetDto target) {
    this.target = target;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy