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.
2 parents 3917543 + 418d691 commit 298b4edCopy full SHA for 298b4ed
src/Nest/DSL/Suggest/CompletionSuggestDescriptor.cs
@@ -14,6 +14,12 @@ public class CompletionSuggestDescriptor<T> : BaseSuggestDescriptor<T> where T :
14
[JsonProperty(PropertyName = "fuzzy")]
15
internal FuzzySuggestDescriptor<T> _Fuzzy { get; set; }
16
17
+ public CompletionSuggestDescriptor<T> Size(int size)
18
+ {
19
+ this._Size = size;
20
+ return this;
21
+ }
22
+
23
public CompletionSuggestDescriptor<T> Text(string text)
24
{
25
this._Text = text;
0 commit comments