7 using System.Collections.Generic;
12 public class CreateDeltaTableRequest : KineticaData
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>();
18 public CreateDeltaTableRequest() { }
20 public CreateDeltaTableRequest(
string delta_table_name,
22 IDictionary<string, string> options =
null)
24 this.delta_table_name = delta_table_name ??
"";
25 this.table_name = table_name ??
"";
26 this.options = options ??
new Dictionary<string, string>();
32 public class CreateDeltaTableResponse : KineticaData
34 public string delta_table_name {
get;
set; }
35 public IDictionary<string, string> info {
get;
set; } =
new Dictionary<string, string>();