Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
12  public class ShowGraphGrammarRequest : KineticaData
13  {
14  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
15 
16  public ShowGraphGrammarRequest() { }
17 
18  public ShowGraphGrammarRequest( IDictionary<string, string> options = null)
19  {
20  this.options = options ?? new Dictionary<string, string>();
21  } // end constructor
22  } // end class ShowGraphGrammarRequest
24 
26  public class ShowGraphGrammarResponse : KineticaData
27  {
28  public bool result { get; set; }
29  public string components_json { get; set; }
30  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
31  } // end class ShowGraphGrammarResponse
33 } // end namespace kinetica