com.applitools.eyes.universal.dto.IOSDeviceRendererDto 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;
/**
* IOSDeviceRendererDto
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class IOSDeviceRendererDto implements IBrowsersInfo {
private IosDeviceInfoDto iosDeviceInfo;
public IOSDeviceRendererDto() {
}
public IOSDeviceRendererDto(IosDeviceInfoDto iosDeviceInfo) {
this.iosDeviceInfo = iosDeviceInfo;
}
public IosDeviceInfoDto getIosDeviceInfo() {
return iosDeviceInfo;
}
public void setIosDeviceInfo(IosDeviceInfoDto iosDeviceInfo) {
this.iosDeviceInfo = iosDeviceInfo;
}
}