All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.applitools.eyes.universal.dto.IOSDeviceRendererDto Maven / Gradle / Ivy

There is a newer version: 5.76.0
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy