Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowFunctions.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
18  public class ShowFunctionsRequest : KineticaData
19  {
20 
32  public struct Options
33  {
34  public const string PROPERTIES = "properties";
35  } // end struct Options
36 
37 
47  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
48 
49 
52  public ShowFunctionsRequest() { }
53 
67  public ShowFunctionsRequest( IDictionary<string, string> options = null)
68  {
69  this.options = options ?? new Dictionary<string, string>();
70  } // end constructor
71 
72  } // end class ShowFunctionsRequest
74 
75 
76 
81  public class ShowFunctionsResponse : KineticaData
82  {
83 
114  public struct Flags
115  {
116  public const string SCALAR = "scalar";
117  public const string AGGREGATE = "aggregate";
118  public const string SQL = "sql";
119  public const string UDF = "udf";
120  public const string CAST = "cast";
121  public const string NONDETERMINISTIC = "nondeterministic";
122  } // end struct Flags
123 
124  public IList<string> function_names { get; set; } = new List<string>();
125  public IList<string> return_types { get; set; } = new List<string>();
126  public IList<IList<string>> parameters { get; set; } = new List<IList<string>>();
127  public IList<int> optional_parameter_count { get; set; } = new List<int>();
128 
157  public IList<int> flags { get; set; } = new List<int>();
158  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
159 
160  } // end class ShowFunctionsResponse
162 
163 
164 
165 
166 
167 } // end namespace kinetica