7 using System.Collections.Generic;
18 public class DropDatasourceRequest : KineticaData
22 public string name {
get;
set; }
27 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
41 IDictionary<string, string>
options =
null)
43 this.name =
name ??
"";
51 public class DropDatasourceResponse : KineticaData
55 public string name {
get;
set; }
58 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
DropDatasourceRequest(string name, IDictionary< string, string > options=null)
Constructs a DropDatasourceRequest object with the specified parameters.
DropDatasourceRequest()
Constructs a DropDatasourceRequest object with default parameters.
string name
Name of the data source to be dropped.
string name
Value of name.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.