Skip to content

Commit

Permalink
Changing to queryResponseHitIds.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzonthemtn committed Jan 22, 2025
1 parent 52c620c commit 95207f2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main/java/org/opensearch/eval/model/ubi/query/UbiQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ public class UbiQuery {
@SerializedName("query_attributes")
private Map<String, String> queryAttributes;

@JsonProperty("query_response_object_ids")
@SerializedName("query_response_object_ids")
private List<String> queryResponseObjectIds;
@JsonProperty("query_response_hit_ids")
@SerializedName("query_response_hit_ids")
private List<String> queryResponseHitIds;

/**
* Creates a new UBI query object.
Expand Down Expand Up @@ -159,11 +159,11 @@ public void setApplication(String application) {
this.application = application;
}

public List<String> getQueryResponseObjectIds() {
return queryResponseObjectIds;
public List<String> getQueryResponseHitIds() {
return queryResponseHitIds;
}

public void setQueryResponseObjectIds(List<String> queryResponseObjectIds) {
this.queryResponseObjectIds = queryResponseObjectIds;
public void setQueryResponseHitIds(List<String> queryResponseHitIds) {
this.queryResponseHitIds = queryResponseHitIds;
}
}

0 comments on commit 95207f2

Please sign in to comment.