Kinetica C# API  Version 7.0.19.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 
29  {
30 
46  public struct SymbolFormat
47  {
48  public const string SVG = "svg";
49  public const string SVG_PATH = "svg_path";
50  } // end struct SymbolFormat
51 
52 
70  public struct Options
71  {
72 
79  public const string COLOR = "color";
80  } // end struct Options
81 
82 
86  public string symbol_id { get; set; }
87 
101  public string symbol_format { get; set; }
102 
110  public byte[] symbol_data { get; set; }
111 
127  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
128 
129 
132  public InsertSymbolRequest() { }
133 
176  string symbol_format,
177  byte[] symbol_data,
178  IDictionary<string, string> options = null)
179  {
180  this.symbol_id = symbol_id ?? "";
181  this.symbol_format = symbol_format ?? "";
182  this.symbol_data = symbol_data ?? new byte[] { };
183  this.options = options ?? new Dictionary<string, string>();
184  } // end constructor
185 
186  } // end class InsertSymbolRequest
187 
188 
189 
194  {
195 
198  public string symbol_id { get; set; }
199 
201  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
202 
203  } // end class InsertSymbolResponse
204 
205 
206 
207 
208 } // end namespace kinetica
A set of results returned by Kinetica.insertSymbol(string,string,byte[],IDictionary{string, string}).
const string COLOR
If symbol_format is &#39;svg&#39; this is ignored.
Definition: InsertSymbol.cs:79
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:86
InsertSymbolRequest()
Constructs an InsertSymbolRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
string symbol_format
Specifies the symbol format.
byte[] symbol_data
The actual symbol data.
string symbol_id
Value of .
A set of parameters for Kinetica.insertSymbol(string,string,byte[],IDictionary{string, string}).
Definition: InsertSymbol.cs:28
IDictionary< string, string > info
Additional information.
Specifies the symbol format.
Definition: InsertSymbol.cs:46
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14