com.applitools.eyes.SessionUrls Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-core-java3 Show documentation
Show all versions of eyes-sdk-core-java3 Show documentation
Applitools Eyes SDK base for Java
The newest version!
package com.applitools.eyes;
/**
* Container for URLs received by test results.
*/
public class SessionUrls {
private String batch;
private String session;
public String getBatch() {
return batch;
}
public void setBatch(String batch) {
this.batch = batch;
}
public String getSession() {
return session;
}
public void setSession(String session) {
this.session = session;
}
}