com.applitools.eyes.universal.dto.DeleteTestSettingsDto 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;
/**
* delete test settings.
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class DeleteTestSettingsDto {
/**
* The test ID.
*/
private String testId;
/**
* The Batch ID.
*/
private String batchId;
/**
* The secret token.
*/
private String secretToken;
/**
* The api key.
*/
private String apiKey;
/**
* Eyes server url.
*/
private String eyesServerUrl;
/**
* Proxy settings.
*/
private ProxyDto proxy;
public String getTestId() {
return testId;
}
public void setTestId(String testId) {
this.testId = testId;
}
public String getBatchId() {
return batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
}
public String getSecretToken() {
return secretToken;
}
public void setSecretToken(String secretToken) {
this.secretToken = secretToken;
}
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
public String getEyesServerUrl() {
return eyesServerUrl;
}
public void setEyesServerUrl(String eyesServerUrl) {
this.eyesServerUrl = eyesServerUrl;
}
public ProxyDto getProxy() {
return proxy;
}
public void setProxy(ProxyDto proxy) {
this.proxy = proxy;
}
}