com.testvagrant.monitor.responses.DeviceResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimusmonitor Show documentation
Show all versions of optimusmonitor Show documentation
The Java Client provides access to Optimus cloud for all java based projects.
The newest version!
package com.testvagrant.monitor.responses;
import com.testvagrant.monitor.entities.DeviceDetails;
import com.testvagrant.monitor.entities.ErrorResponse;
public class DeviceResponse {
private DeviceDetails devices;
private ErrorResponse error;
private boolean success;
public DeviceDetails getDevices() {
return devices;
}
public void setDevices(DeviceDetails devices) {
this.devices = devices;
}
public ErrorResponse getError() {
return error;
}
public void setError(ErrorResponse error) {
this.error = error;
}
public boolean isSuccess() {
return success;
}
public void setSuccess(boolean success) {
this.success = success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy