Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
FilterByValue.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 
27  {
28 
31  public string table_name { get; set; }
32 
37  public string view_name { get; set; } = "";
38 
41  public bool is_string { get; set; }
42 
44  public double _value { get; set; } = 0;
45 
47  public string value_str { get; set; } = "";
48 
51  public string column_name { get; set; }
52 
54  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
55 
56 
59  public FilterByValueRequest() { }
60 
79  string view_name,
80  bool is_string,
81  double _value,
82  string value_str,
83  string column_name,
84  IDictionary<string, string> options = null)
85  {
86  this.table_name = table_name ?? "";
87  this.view_name = view_name ?? "";
88  this.is_string = is_string;
89  this._value = _value;
90  this.value_str = value_str ?? "";
91  this.column_name = column_name ?? "";
92  this.options = options ?? new Dictionary<string, string>();
93  } // end constructor
94 
95  } // end class FilterByValueRequest
96 
97 
98 
101  {
102 
105  public long count { get; set; }
106 
107  } // end class FilterByValueResponse
108 
109 
110 
111 
112 } // end namespace kinetica
string column_name
Name of a column on which the filter by value would be applied.
long count
The number of records passing the value filter.
string value_str
The string value to search for.
FilterByValueRequest()
Constructs a FilterByValueRequest object with default parameters.
double _value
The value to search for.
FilterByValueRequest(string table_name, string view_name, bool is_string, double _value, string value_str, string column_name, IDictionary< string, string > options=null)
Constructs a FilterByValueRequest object with the specified parameters.
A set of results returned by /filter/byvalue.
IDictionary< string, string > options
Optional parameters.
A set of parameters for /filter/byvalue.
bool is_string
Indicates whether the value being searched for is string or numeric.
string table_name
Name of an existing table on which to perform the calculation.
string view_name
If provided, then this will be the name of the view containing the results.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14