![JAR search and dependency download from the Maven repository](/logo.png)
org.qas.qtest.api.services.search.model.LinkedObject 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.search.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.qas.api.JsonModel;
@JsonModel
public class LinkedObject {
@JsonProperty("object_type")
private String objectType;
@JsonProperty("object_id")
private int objectId;
public String getObjectType() {
return objectType;
}
public LinkedObject setObjectType(String objectType) {
this.objectType = objectType;
return this;
}
public int getObjectId() {
return objectId;
}
public LinkedObject setObjectId(int objectId) {
this.objectId = objectId;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy