org.qas.qtest.api.services.execution.model.QueueProcessingResponseRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtest-sdk-java Show documentation
Show all versions of qtest-sdk-java Show documentation
A java SDK client wrap qTest REST API
The newest version!
package org.qas.qtest.api.services.execution.model;
import org.qas.api.ApiServiceRequest;
public class QueueProcessingResponseRequest extends ApiServiceRequest {
/*path*/
private Long id;
public QueueProcessingResponseRequest() {
}
public QueueProcessingResponseRequest(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public QueueProcessingResponseRequest withId(Long id) {
setId(id);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy