com.applitools.eyes.universal.dto.MakeECClient 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;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class MakeECClient {
private ECClientSettingsDto settings;
public MakeECClient() {
}
public MakeECClient(ECClientSettingsDto settings) {
this.settings = settings;
}
public ECClientSettingsDto getSettings() {
return settings;
}
public void setSettings(ECClientSettingsDto settings) {
this.settings = settings;
}
@Override
public String toString() {
return "MakeECClient{" +
"settings=" + settings +
'}';
}
}