Kinetica C# API  Version 7.1.10.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 
21  {
22 
28  public string table_name { get; set; }
29 
32  public string column_name { get; set; }
33 
36  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
37 
38 
42 
57  string column_name,
58  IDictionary<string, string> options = null)
59  {
60  this.table_name = table_name ?? "";
61  this.column_name = column_name ?? "";
62  this.options = options ?? new Dictionary<string, string>();
63  } // end constructor
64 
65  } // end class AggregateMinMaxRequest
66 
67 
68 
73  {
74 
77  public double min { get; set; }
78 
81  public double max { get; set; }
82 
84  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
85 
86  } // end class AggregateMinMaxResponse
87 
88 
89 
90 
91 } // end namespace kinetica
A set of parameters for Kinetica.aggregateMinMax(string,string,IDictionary{string, string}).
A set of results returned by Kinetica.aggregateMinMax(string,string,IDictionary{string, string}).
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 .
IDictionary< string, string > info
Additional information.
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 .