Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
12  public class ListGraphRequest : KineticaData
13  {
14  public string graph_name { get; set; } = "";
15  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
16 
17  public ListGraphRequest() { }
18 
19  public ListGraphRequest( string graph_name = null,
20  IDictionary<string, string> options = null)
21  {
22  this.graph_name = graph_name ?? "";
23  this.options = options ?? new Dictionary<string, string>();
24  } // end constructor
25  } // end class ListGraphRequest
27 
29  public class ListGraphResponse : KineticaData
30  {
31  public bool result { get; set; }
32  public IList<string> graph_names { get; set; } = new List<string>();
33  public IList<long> num_nodes { get; set; } = new List<long>();
34  public IList<long> num_edges { get; set; } = new List<long>();
35  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
36  } // end class ListGraphResponse
38 } // end namespace kinetica