Class AutocompleteRequest
Inheritance
↳ object
↳ AutocompleteRequest
Inherited Members
Equals(object)
Equals(object, object)
GetHashCode()
GetType()
MemberwiseClone()
ReferenceEquals(object, object)
ToString()
Namespace: OptimaJet.Workflow.Core.Runtime.CodeAutocomplete
Assembly: OptimaJet.Workflow.Core.dll
Syntaxpublic class AutocompleteRequest
Properties
Pattern
text for search (like "System.Thr")
Declaration[JsonProperty("pattern")]
public string Pattern { get; set; }
Type | Description |
---|---|
string |
Usings
list of usings (like "System", "System.Threading")
Declaration[JsonProperty("usings")]
public List<string> Usings { get; set; }
Type | Description |
---|---|
List<string> |
Variables
list of allow variables to autocomplete
Declaration[JsonProperty("variables")]
public List<AutocompleteVariable> Variables { get; set; }
Type | Description |
---|---|
List<AutocompleteVariable> |
Id
id that will be returned in response (to working with signalR)
Declaration[JsonProperty("id")]
public int Id { get; set; }
Type | Description |
---|---|
int |