Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
HasType.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
18  {
19 
22  public string type_id { get; set; }
23 
25  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
26 
27 
30  public HasTypeRequest() { }
31 
39  public HasTypeRequest( string type_id,
40  IDictionary<string, string> options = null)
41  {
42  this.type_id = type_id ?? "";
43  this.options = options ?? new Dictionary<string, string>();
44  } // end constructor
45 
46  } // end class HasTypeRequest
47 
48 
49 
52  {
53 
59  public struct TypeExists
60  {
61  public const string TRUE = "true";
62  public const string FALSE = "false";
63  } // end struct TypeExists
64 
65 
68  public string type_id { get; set; }
69 
73  public bool type_exists { get; set; }
74 
75  } // end class HasTypeResponse
76 
77 
78 
79 
80 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: HasType.cs:25
HasTypeRequest(string type_id, IDictionary< string, string > options=null)
Constructs a HasTypeRequest object with the specified parameters.
Definition: HasType.cs:39
Indicates whether the type exists or not.
Definition: HasType.cs:59
string type_id
Id of the type returned in response to /create/type request.
Definition: HasType.cs:22
HasTypeRequest()
Constructs a HasTypeRequest object with default parameters.
Definition: HasType.cs:30
string type_id
Value of .
Definition: HasType.cs:68
A set of parameters for /has/type.
Definition: HasType.cs:17
A set of results returned by /has/type.
Definition: HasType.cs:51
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
bool type_exists
Indicates whether the type exists or not.
Definition: HasType.cs:73