7 using System.Collections.Generic;
12 public class CreateStateTableRequest : KineticaData
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>();
19 public CreateStateTableRequest() { }
21 public CreateStateTableRequest(
string table_name,
22 string input_table_name,
23 string init_table_name,
24 IDictionary<string, string> options =
null)
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>();
35 public class CreateStateTableResponse : KineticaData
37 public string table_name {
get;
set; }
38 public IDictionary<string, string> info {
get;
set; } =
new Dictionary<string, string>();