Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
InsertSymbol.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 
28  {
29 
35  public struct SymbolFormat
36  {
37  public const string SVG = "svg";
38  public const string SVG_PATH = "svg_path";
39  } // end struct SymbolFormat
40 
41 
58  public struct Options
59  {
60 
67  public const string COLOR = "color";
68  } // end struct Options
69 
70 
74  public string symbol_id { get; set; }
75 
79  public string symbol_format { get; set; }
80 
88  public byte[] symbol_data { get; set; }
89 
104  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
105 
106 
109  public InsertSymbolRequest() { }
110 
142  string symbol_format,
143  byte[] symbol_data,
144  IDictionary<string, string> options = null)
145  {
146  this.symbol_id = symbol_id ?? "";
147  this.symbol_format = symbol_format ?? "";
148  this.symbol_data = symbol_data ?? new byte[] { };
149  this.options = options ?? new Dictionary<string, string>();
150  } // end constructor
151 
152  } // end class InsertSymbolRequest
153 
154 
155 
158  {
159 
162  public string symbol_id { get; set; }
163 
164  } // end class InsertSymbolResponse
165 
166 
167 
168 
169 } // end namespace kinetica
A set of results returned by /insert/symbol.
const string COLOR
If &lt;member name=&quot;symbol_format&quot;&gt; is &#39;svg&#39; this is ignored.
Definition: InsertSymbol.cs:67
InsertSymbolRequest(string symbol_id, string symbol_format, byte[] symbol_data, IDictionary< string, string > options=null)
Constructs an InsertSymbolRequest object with the specified parameters.
string symbol_id
The id of the symbol being added.
Definition: InsertSymbol.cs:74
InsertSymbolRequest()
Constructs an InsertSymbolRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
string symbol_format
Specifies the symbol format.
Definition: InsertSymbol.cs:79
byte[] symbol_data
The actual symbol data.
Definition: InsertSymbol.cs:88
string symbol_id
Value of .
A set of parameters for /insert/symbol.
Definition: InsertSymbol.cs:27
Specifies the symbol format.
Definition: InsertSymbol.cs:35
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14