Kinetica C# API  Version 6.1.0.0
AggregateMinMaxGeometry.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 
25  public string table_name { get; set; }
26 
29  public string column_name { get; set; }
30 
32  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
33 
34 
38 
49  string column_name,
50  IDictionary<string, string> options = null)
51  {
52  this.table_name = table_name ?? "";
53  this.column_name = column_name ?? "";
54  this.options = options ?? new Dictionary<string, string>();
55  } // end constructor
56 
57  } // end class AggregateMinMaxGeometryRequest
58 
59 
60 
65  {
66 
69  public double min_x { get; set; }
70 
73  public double max_x { get; set; }
74 
77  public double min_y { get; set; }
78 
81  public double max_y { get; set; }
82 
83  } // end class AggregateMinMaxGeometryResponse
84 
85 
86 
87 
88 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
string column_name
Name of a geospatial geometry column on which the min-max will be calculated.
string table_name
Name of the table on which the operation will be performed.
AggregateMinMaxGeometryRequest()
Constructs an AggregateMinMaxGeometryRequest object with default parameters.
A set of parameters for Kinetica.aggregateMinMaxGeometry(string,string,IDictionary<string, string>).
AggregateMinMaxGeometryRequest(string table_name, string column_name, IDictionary< string, string > options=null)
Constructs an AggregateMinMaxGeometryRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.aggregateMinMaxGeometry(string,string,IDictionary<string, string>).