7 using System.Collections.Generic;
19 public class CreateDeltaTableRequest : KineticaData
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>();
28 public CreateDeltaTableRequest() { }
37 public CreateDeltaTableRequest(
string delta_table_name,
39 IDictionary<string, string> options = null)
41 this.delta_table_name = delta_table_name ??
"";
42 this.table_name = table_name ??
"";
43 this.options = options ??
new Dictionary<string, string>();
55 public class CreateDeltaTableResponse : KineticaData
57 public string delta_table_name {
get; set; }
58 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();