Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AggregateMinMax.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 
19  {
20 
23  public string table_name { get; set; }
24 
27  public string column_name { get; set; }
28 
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32 
36 
47  string column_name,
48  IDictionary<string, string> options = null)
49  {
50  this.table_name = table_name ?? "";
51  this.column_name = column_name ?? "";
52  this.options = options ?? new Dictionary<string, string>();
53  } // end constructor
54 
55  } // end class AggregateMinMaxRequest
56 
57 
58 
61  {
62 
65  public double min { get; set; }
66 
69  public double max { get; set; }
70 
71  } // end class AggregateMinMaxResponse
72 
73 
74 
75 
76 } // end namespace kinetica
A set of parameters for /aggregate/minmax.
A set of results returned by /aggregate/minmax.
AggregateMinMaxRequest()
Constructs an AggregateMinMaxRequest object with default parameters.
string column_name
Name of a column or an expression of one or more column on which the min-max will be calculated...
IDictionary< string, string > options
Optional parameters.
double min
Minimum value of the .
AggregateMinMaxRequest(string table_name, string column_name, IDictionary< string, string > options=null)
Constructs an AggregateMinMaxRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string table_name
Name of the table on which the operation will be performed.
double max
Maximum value of the .