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

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

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

/**
 * match result dto
 */
public class MatchResultDto {
  private Boolean asExpected;
  private Long windowId;

  public MatchResultDto() {
  }

  public MatchResultDto(Boolean asExpected, Long windowId) {
    this.asExpected = asExpected;
    this.windowId = windowId;
  }

  public Boolean getAsExpected() {
    return asExpected;
  }

  public void setAsExpected(Boolean asExpected) {
    this.asExpected = asExpected;
  }

  public Long getWindowId() {
    return windowId;
  }

  public void setWindowId(Long windowId) {
    this.windowId = windowId;
  }

  @Override
  public String toString() {
    return "MatchResultDto{" +
        "asExpected=" + asExpected +
        ", windowId=" + windowId +
        '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy