We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44adc3f commit b923f5eCopy full SHA for b923f5e
src/main/java/com/meilisearch/sdk/SimilarDocumentRequest.java
@@ -32,8 +32,8 @@ public SimilarDocumentRequest() {}
32
@Override
33
public String toString() {
34
JSONObject jsonObject = new JSONObject();
35
- jsonObject.putOpt("id", this.id);
36
- jsonObject.putOpt("embedder", this.embedder);
+ jsonObject.put("id", this.id);
+ jsonObject.put("embedder", this.embedder);
37
jsonObject.putOpt("attributesToRetrieve", this.attributesToRetrieve);
38
jsonObject.putOpt("offset", this.offset);
39
jsonObject.putOpt("limit", this.limit);
0 commit comments