Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
16  {
20  public string type_id { get; set; }
21 
25  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
26 
29  public HasTypeRequest() { }
30 
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  } // end class HasTypeRequest
46 
51  {
56  public struct TypeExists
57  {
58  public const string TRUE = "true";
59  public const string FALSE = "false";
60  } // end struct TypeExists
61 
64  public string type_id { get; set; }
65 
76  public bool type_exists { get; set; }
77 
79  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
80  } // end class HasTypeResponse
81 } // 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
A set of string constants for the parameter type_exists.
Definition: HasType.cs:56
IDictionary< string, string > info
Additional information.
Definition: HasType.cs:79
string type_id
Id of the type returned in response to Kinetica.createType request.
Definition: HasType.cs:20
HasTypeRequest()
Constructs a HasTypeRequest object with default parameters.
Definition: HasType.cs:29
string type_id
Value of type_id.
Definition: HasType.cs:64
A set of parameters for Kinetica.hasType.
Definition: HasType.cs:15
A set of results returned by Kinetica.hasType.
Definition: HasType.cs:50
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:76