7 using System.Collections.Generic;
19 public class CreateStateTableRequest : KineticaData
21 public string table_name {
get; set; }
22 public string input_table_name {
get; set; }
23 public string init_table_name {
get; set; }
24 public IDictionary<string, string> options {
get; set; } =
new Dictionary<string, string>();
29 public CreateStateTableRequest() { }
39 public CreateStateTableRequest(
string table_name,
40 string input_table_name,
41 string init_table_name,
42 IDictionary<string, string> options = null)
44 this.table_name = table_name ??
"";
45 this.input_table_name = input_table_name ??
"";
46 this.init_table_name = init_table_name ??
"";
47 this.options = options ??
new Dictionary<string, string>();
59 public class CreateStateTableResponse : KineticaData
61 public string table_name {
get; set; }
62 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();