Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
12  public class CreateStateTableRequest : KineticaData
13  {
14  public string table_name { get; set; }
15  public string input_table_name { get; set; }
16  public string init_table_name { get; set; }
17  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
18 
19  public CreateStateTableRequest() { }
20 
21  public CreateStateTableRequest( string table_name,
22  string input_table_name,
23  string init_table_name,
24  IDictionary<string, string> options = null)
25  {
26  this.table_name = table_name ?? "";
27  this.input_table_name = input_table_name ?? "";
28  this.init_table_name = init_table_name ?? "";
29  this.options = options ?? new Dictionary<string, string>();
30  } // end constructor
31  } // end class CreateStateTableRequest
33 
35  public class CreateStateTableResponse : KineticaData
36  {
37  public string table_name { get; set; }
38  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
39  } // end class CreateStateTableResponse
41 } // end namespace kinetica