Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.12 KB

OutlierBound.md

File metadata and controls

82 lines (45 loc) · 2.12 KB

OutlierBound

Properties

Name Type Description Notes
Lower Pointer to float64 Lower bond value. [optional]
Upper Pointer to float64 Upper bond value. [optional]

Methods

NewOutlierBound

func NewOutlierBound() *OutlierBound

NewOutlierBound instantiates a new OutlierBound 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

NewOutlierBoundWithDefaults

func NewOutlierBoundWithDefaults() *OutlierBound

NewOutlierBoundWithDefaults instantiates a new OutlierBound 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

GetLower

func (o *OutlierBound) GetLower() float64

GetLower returns the Lower field if non-nil, zero value otherwise.

GetLowerOk

func (o *OutlierBound) GetLowerOk() (*float64, bool)

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

SetLower

func (o *OutlierBound) SetLower(v float64)

SetLower sets Lower field to given value.

HasLower

func (o *OutlierBound) HasLower() bool

HasLower returns a boolean if a field has been set.

GetUpper

func (o *OutlierBound) GetUpper() float64

GetUpper returns the Upper field if non-nil, zero value otherwise.

GetUpperOk

func (o *OutlierBound) GetUpperOk() (*float64, bool)

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

SetUpper

func (o *OutlierBound) SetUpper(v float64)

SetUpper sets Upper field to given value.

HasUpper

func (o *OutlierBound) HasUpper() bool

HasUpper returns a boolean if a field has been set.

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