sdk-go-zincsearch/docs/AggregationHistogramBound.md
2022-06-24 13:04:50 +08:00

2.3 KiB

AggregationHistogramBound

Properties

Name Type Description Notes
Max Pointer to float32 maximum [optional]
Min Pointer to float32 minimum [optional]

Methods

NewAggregationHistogramBound

func NewAggregationHistogramBound() *AggregationHistogramBound

NewAggregationHistogramBound instantiates a new AggregationHistogramBound 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

NewAggregationHistogramBoundWithDefaults

func NewAggregationHistogramBoundWithDefaults() *AggregationHistogramBound

NewAggregationHistogramBoundWithDefaults instantiates a new AggregationHistogramBound 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

GetMax

func (o *AggregationHistogramBound) GetMax() float32

GetMax returns the Max field if non-nil, zero value otherwise.

GetMaxOk

func (o *AggregationHistogramBound) GetMaxOk() (*float32, bool)

GetMaxOk returns a tuple with the Max field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetMax

func (o *AggregationHistogramBound) SetMax(v float32)

SetMax sets Max field to given value.

HasMax

func (o *AggregationHistogramBound) HasMax() bool

HasMax returns a boolean if a field has been set.

GetMin

func (o *AggregationHistogramBound) GetMin() float32

GetMin returns the Min field if non-nil, zero value otherwise.

GetMinOk

func (o *AggregationHistogramBound) GetMinOk() (*float32, bool)

GetMinOk returns a tuple with the Min field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetMin

func (o *AggregationHistogramBound) SetMin(v float32)

SetMin sets Min field to given value.

HasMin

func (o *AggregationHistogramBound) HasMin() bool

HasMin returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]