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

com.applitools.eyes.MatchResult Maven / Gradle / Ivy

The newest version!
package com.applitools.eyes;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties({"$id"})
public class MatchResult {

    private boolean asExpected;
    private String windowId;

    public MatchResult() {}

    public boolean getAsExpected() {
        return asExpected;
    }

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

    public String getWindowId() {
        return windowId;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy