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