Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateDeltaTable.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 CreateDeltaTableRequest : KineticaData
20  {
21  public string delta_table_name { get; set; }
22  public string table_name { get; set; }
23  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
24 
25 
28  public CreateDeltaTableRequest() { }
29 
37  public CreateDeltaTableRequest( string delta_table_name,
38  string table_name,
39  IDictionary<string, string> options = null)
40  {
41  this.delta_table_name = delta_table_name ?? "";
42  this.table_name = table_name ?? "";
43  this.options = options ?? new Dictionary<string, string>();
44  } // end constructor
45 
46  } // end class CreateDeltaTableRequest
48 
49 
50 
55  public class CreateDeltaTableResponse : KineticaData
56  {
57  public string delta_table_name { get; set; }
58  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
59 
60  } // end class CreateDeltaTableResponse
62 
63 
64 
65 
66 
67 } // end namespace kinetica