Name | Type | Description | Notes |
---|---|---|---|
Function | AggFunction | ||
GroupBy | Pointer to []string | [optional] | |
Having | Condition |
func NewAggregation(function AggFunction, having Condition, ) *Aggregation
NewAggregation instantiates a new Aggregation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewAggregationWithDefaults() *Aggregation
NewAggregationWithDefaults instantiates a new Aggregation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *Aggregation) GetFunction() AggFunction
GetFunction returns the Function field if non-nil, zero value otherwise.
func (o *Aggregation) GetFunctionOk() (*AggFunction, bool)
GetFunctionOk returns a tuple with the Function field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Aggregation) SetFunction(v AggFunction)
SetFunction sets Function field to given value.
func (o *Aggregation) GetGroupBy() []string
GetGroupBy returns the GroupBy field if non-nil, zero value otherwise.
func (o *Aggregation) GetGroupByOk() (*[]string, bool)
GetGroupByOk returns a tuple with the GroupBy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Aggregation) SetGroupBy(v []string)
SetGroupBy sets GroupBy field to given value.
func (o *Aggregation) HasGroupBy() bool
HasGroupBy returns a boolean if a field has been set.
func (o *Aggregation) SetGroupByNil(b bool)
SetGroupByNil sets the value for GroupBy to be an explicit nil
func (o *Aggregation) UnsetGroupBy()
UnsetGroupBy ensures that no value is present for GroupBy, not even an explicit nil
func (o *Aggregation) GetHaving() Condition
GetHaving returns the Having field if non-nil, zero value otherwise.
func (o *Aggregation) GetHavingOk() (*Condition, bool)
GetHavingOk returns a tuple with the Having field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Aggregation) SetHaving(v Condition)
SetHaving sets Having field to given value.