Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ListGraph.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 ListGraphRequest : KineticaData
19  {
20  public string graph_name { get; set; } = "";
21  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
22 
23 
26  public ListGraphRequest() { }
27 
34  public ListGraphRequest( string graph_name = null,
35  IDictionary<string, string> options = null)
36  {
37  this.graph_name = graph_name ?? "";
38  this.options = options ?? new Dictionary<string, string>();
39  } // end constructor
40 
41  } // end class ListGraphRequest
43 
44 
45 
50  public class ListGraphResponse : KineticaData
51  {
52  public bool result { get; set; }
53  public IList<string> graph_names { get; set; } = new List<string>();
54  public IList<long> num_nodes { get; set; } = new List<long>();
55  public IList<long> num_edges { get; set; } = new List<long>();
56  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
57 
58  } // end class ListGraphResponse
60 
61 
62 
63 
64 
65 } // end namespace kinetica