Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowGraphGrammar.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 ShowGraphGrammarRequest : KineticaData
19  {
20  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
21 
22 
25  public ShowGraphGrammarRequest() { }
26 
32  public ShowGraphGrammarRequest( IDictionary<string, string> options = null)
33  {
34  this.options = options ?? new Dictionary<string, string>();
35  } // end constructor
36 
37  } // end class ShowGraphGrammarRequest
39 
40 
41 
46  public class ShowGraphGrammarResponse : KineticaData
47  {
48  public bool result { get; set; }
49  public string components_json { get; set; }
50  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
51 
52  } // end class ShowGraphGrammarResponse
54 
55 
56 
57 
58 
59 } // end namespace kinetica