io.github.lambdatest.models.SnapshotData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lambdatest-java-sdk Show documentation
Show all versions of lambdatest-java-sdk Show documentation
A Java SDK for LambdaTest services.
The newest version!
package io.github.lambdatest.models;
public class SnapshotData {
private Snapshot snapshot;
private String testType;
// Getters and Setters
public Snapshot getSnapshot() {
return snapshot;
}
public void setSnapshot(Snapshot snapshot) {
this.snapshot = snapshot;
}
public String getTestType() {
return testType;
}
public void setTestType(String testType) {
this.testType = testType;
}
}