com.applitools.eyes.universal.dto.VisualGridOptionDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-core-java5 Show documentation
Show all versions of eyes-sdk-core-java5 Show documentation
Applitools Eyes SDK base for Java
package com.applitools.eyes.universal.dto;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* visual grid option dto
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class VisualGridOptionDto {
private String key;
private Object value;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
}