![JAR search and dependency download from the Maven repository](/logo.png)
io.appium.java_client.serverevents.ServerEvents Maven / Gradle / Ivy
package io.appium.java_client.serverevents;
import lombok.Data;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
@Data
public class ServerEvents {
public final List commands;
public final List events;
public final String jsonData;
public void save(Path output) throws IOException {
Files.write(output, this.jsonData.getBytes());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy