7 using System.Collections.Generic;
16 public class HasSchemaRequest : KineticaData
26 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
42 IDictionary<string, string>
options =
null)
52 public class HasSchemaResponse : KineticaData
58 public struct SchemaExists
60 public const string TRUE =
"true";
61 public const string FALSE =
"false";
81 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
bool schema_exists
Indicates whether the schema exists or not.
HasSchemaRequest()
Constructs a HasSchemaRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
HasSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a HasSchemaRequest object with the specified parameters.
string schema_name
Value of schema_name
string schema_name
Name of the schema to check for existence, in root, using standard name resolution rules.