Kinetica C# API  Version 6.1.0.0
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 
24  {
25 
28  public string type_id { get; set; }
29 
32  public string label { get; set; }
33 
35  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
36 
37 
40  public ShowTypesRequest() { }
41 
51  public ShowTypesRequest( string type_id,
52  string label,
53  IDictionary<string, string> options = null)
54  {
55  this.type_id = type_id ?? "";
56  this.label = label ?? "";
57  this.options = options ?? new Dictionary<string, string>();
58  } // end constructor
59 
60  } // end class ShowTypesRequest
61 
62 
63 
68  {
69  public IList<string> type_ids { get; set; } = new List<string>();
70  public IList<string> type_schemas { get; set; } = new List<string>();
71  public IList<string> labels { get; set; } = new List<string>();
72  public IList<IDictionary<string, IList<string>>> properties { get; set; } = new List<IDictionary<string, IList<string>>>();
73 
74  } // end class ShowTypesResponse
75 
76 
77 
78 
79 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: ShowTypes.cs:35
ShowTypesRequest(string type_id, string label, IDictionary< string, string > options=null)
Constructs a ShowTypesRequest object with the specified parameters.
Definition: ShowTypes.cs:51
string label
Option string that was supplied by user in a call to /create/type.
Definition: ShowTypes.cs:32
A set of parameters for Kinetica.showTypes(string,string,IDictionary<string, string>).
Definition: ShowTypes.cs:23
string type_id
Type Id returned in response to a call to /create/type.
Definition: ShowTypes.cs:28
ShowTypesRequest()
Constructs a ShowTypesRequest object with default parameters.
Definition: ShowTypes.cs:40
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.showTypes(string,string,IDictionary<string, string>)...
Definition: ShowTypes.cs:67