Kinetica C# API  Version 6.1.0.0
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 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
28 
31  public HasTypeRequest() { }
32 
40  public HasTypeRequest( string type_id,
41  IDictionary<string, string> options = null)
42  {
43  this.type_id = type_id ?? "";
44  this.options = options ?? new Dictionary<string, string>();
45  } // end constructor
46 
47  } // end class HasTypeRequest
48 
49 
50 
55  {
56 
71  public struct TypeExists
72  {
73  public const string TRUE = "true";
74  public const string FALSE = "false";
75  } // end struct TypeExists
76 
77 
80  public string type_id { get; set; }
81 
94  public bool type_exists { get; set; }
95 
96  } // end class HasTypeResponse
97 
98 
99 
100 
101 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: HasType.cs:26
HasTypeRequest(string type_id, IDictionary< string, string > options=null)
Constructs a HasTypeRequest object with the specified parameters.
Definition: HasType.cs:40
Indicates whether the type exists or not.
Definition: HasType.cs:71
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:31
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:54
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14