com.applitools.eyes.selenium.universal.dto.EmulationBaseInfoDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java5 Show documentation
Show all versions of eyes-selenium-java5 Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
package com.applitools.eyes.selenium.universal.dto;
import com.applitools.eyes.universal.dto.RectangleSizeDto;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* emulation base info dto
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class EmulationBaseInfoDto {
private String screenOrientation;
private RectangleSizeDto size;
private String deviceName;
private Integer width;
private Integer height;
private Double deviceScaleFactor;
public String getScreenOrientation() {
return screenOrientation;
}
public void setScreenOrientation(String screenOrientation) {
this.screenOrientation = screenOrientation;
}
public RectangleSizeDto getSize() {
return size;
}
public void setSize(RectangleSizeDto size) {
this.size = size;
}
public String getDeviceName() {
return deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public Integer getWidth() {
return width;
}
public void setWidth(Integer width) {
this.width = width;
}
public Integer getHeight() {
return height;
}
public void setHeight(Integer height) {
this.height = height;
}
public Double getDeviceScaleFactor() {
return deviceScaleFactor;
}
public void setDeviceScaleFactor(Double deviceScaleFactor) {
this.deviceScaleFactor = deviceScaleFactor;
}
}