com.applitools.eyes.universal.dto.ChromeEmulationDeviceRendererDto 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;
/**
* ChromeEmulationDeviceRendererDto
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ChromeEmulationDeviceRendererDto implements IBrowsersInfo {
private ChromeEmulationInfoDto chromeEmulationInfo;
public ChromeEmulationDeviceRendererDto(ChromeEmulationInfoDto chromeEmulationInfo) {
this.chromeEmulationInfo = chromeEmulationInfo;
}
public ChromeEmulationDeviceRendererDto() {
}
public ChromeEmulationInfoDto getChromeEmulationInfo() {
return chromeEmulationInfo;
}
public void setChromeEmulationInfo(ChromeEmulationInfoDto chromeEmulationInfo) {
this.chromeEmulationInfo = chromeEmulationInfo;
}
}