Kinetica C# API  Version 6.2.0.1
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 
19  {
20 
23  public string type_id { get; set; }
24 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
29 
32  public HasTypeRequest() { }
33 
42  public HasTypeRequest( string type_id,
43  IDictionary<string, string> options = null)
44  {
45  this.type_id = type_id ?? "";
46  this.options = options ?? new Dictionary<string, string>();
47  } // end constructor
48 
49  } // end class HasTypeRequest
50 
51 
52 
57  {
58 
73  public struct TypeExists
74  {
75  public const string TRUE = "true";
76  public const string FALSE = "false";
77  } // end struct TypeExists
78 
79 
82  public string type_id { get; set; }
83 
96  public bool type_exists { get; set; }
97 
98  } // end class HasTypeResponse
99 
100 
101 
102 
103 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: HasType.cs:27
HasTypeRequest(string type_id, IDictionary< string, string > options=null)
Constructs a HasTypeRequest object with the specified parameters.
Definition: HasType.cs:42
Indicates whether the type exists or not.
Definition: HasType.cs:73
string type_id
Id of the type returned in response to /create/type request.
Definition: HasType.cs:23
HasTypeRequest()
Constructs a HasTypeRequest object with default parameters.
Definition: HasType.cs:32
A set of parameters for Kinetica.hasType(string,IDictionary<string, string>).
Definition: HasType.cs:18
A set of results returned by Kinetica.hasType(string,IDictionary<string, string>).
Definition: HasType.cs:56
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14