Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowTypes.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 
22  {
23 
26  public string type_id { get; set; }
27 
30  public string label { get; set; }
31 
33  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
34 
35 
38  public ShowTypesRequest() { }
39 
49  public ShowTypesRequest( string type_id,
50  string label,
51  IDictionary<string, string> options = null)
52  {
53  this.type_id = type_id ?? "";
54  this.label = label ?? "";
55  this.options = options ?? new Dictionary<string, string>();
56  } // end constructor
57 
58  } // end class ShowTypesRequest
59 
60 
61 
64  {
65  public IList<string> type_ids { get; set; } = new List<string>();
66  public IList<string> type_schemas { get; set; } = new List<string>();
67  public IList<string> labels { get; set; } = new List<string>();
68  public IList<IDictionary<string, IList<string>>> properties { get; set; } = new List<IDictionary<string, IList<string>>>();
69 
70  } // end class ShowTypesResponse
71 
72 
73 
74 
75 } // end namespace kinetica
IList< string > type_ids
Definition: ShowTypes.cs:65
IDictionary< string, string > options
Optional parameters.
Definition: ShowTypes.cs:33
ShowTypesRequest(string type_id, string label, IDictionary< string, string > options=null)
Constructs a ShowTypesRequest object with the specified parameters.
Definition: ShowTypes.cs:49
IList< IDictionary< string, IList< string > > > properties
Definition: ShowTypes.cs:68
IList< string > type_schemas
Definition: ShowTypes.cs:66
string label
Option string that was supplied by user in a call to /create/type.
Definition: ShowTypes.cs:30
A set of parameters for /show/types.
Definition: ShowTypes.cs:21
IList< string > labels
Definition: ShowTypes.cs:67
string type_id
Type Id returned in response to a call to /create/type.
Definition: ShowTypes.cs:26
ShowTypesRequest()
Constructs a ShowTypesRequest object with default parameters.
Definition: ShowTypes.cs:38
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by /show/types.
Definition: ShowTypes.cs:63