Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateStateTable.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 {
19  public class CreateStateTableRequest : KineticaData
20  {
21  public string table_name { get; set; }
22  public string input_table_name { get; set; }
23  public string init_table_name { get; set; }
24  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
25 
26 
29  public CreateStateTableRequest() { }
30 
39  public CreateStateTableRequest( string table_name,
40  string input_table_name,
41  string init_table_name,
42  IDictionary<string, string> options = null)
43  {
44  this.table_name = table_name ?? "";
45  this.input_table_name = input_table_name ?? "";
46  this.init_table_name = init_table_name ?? "";
47  this.options = options ?? new Dictionary<string, string>();
48  } // end constructor
49 
50  } // end class CreateStateTableRequest
52 
53 
54 
59  public class CreateStateTableResponse : KineticaData
60  {
61  public string table_name { get; set; }
62  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
63 
64  } // end class CreateStateTableResponse
66 
67 
68 
69 
70 
71 } // end namespace kinetica