Skip to content

Commit

Permalink
Add scroll to search request serialization.
Browse files Browse the repository at this point in the history
  • Loading branch information
frivard-coveo committed Oct 19, 2023
1 parent 978a021 commit fa917d9
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -963,6 +963,10 @@ protected void serializeInternal(JsonGenerator generator, JsonpMapper mapper) {
generator.writeEnd();

}
if (this.scroll != null) {
generator.writeKey("scroll");
generator.write(this.scroll._toJsonString());
}
if (ApiTypeHelper.isDefined(this.searchAfter)) {
generator.writeKey("search_after");
generator.writeStartArray();
Expand Down

0 comments on commit fa917d9

Please sign in to comment.