com.applitools.eyes.universal.dto.ChromeEmulationInfoDto 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;
/**
* @author Kanan
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ChromeEmulationInfoDto {
private String deviceName;
private String screenOrientation;
public ChromeEmulationInfoDto() {
}
public ChromeEmulationInfoDto(String deviceName, String screenOrientation) {
this.deviceName = deviceName;
this.screenOrientation = screenOrientation;
}
public String getDeviceName() {
return deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getScreenOrientation() {
return screenOrientation;
}
public void setScreenOrientation(String screenOrientation) {
this.screenOrientation = screenOrientation;
}
}