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 b9fa4e1 commit 418d691Copy full SHA for 418d691
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