All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.qas.qtest.api.services.search.model.LinkedObject Maven / Gradle / Ivy

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