Skip to content

Latest commit

 

History

History
135 lines (72 loc) · 3.47 KB

File metadata and controls

135 lines (72 loc) · 3.47 KB

LimitOutOfRange

Properties

Name Type Description Notes
Type string
Message string
Limit int32
LowerBound int32
UpperBound int32

Methods

NewLimitOutOfRange

func NewLimitOutOfRange(type_ string, message string, limit int32, lowerBound int32, upperBound int32, ) *LimitOutOfRange

NewLimitOutOfRange instantiates a new LimitOutOfRange 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

NewLimitOutOfRangeWithDefaults

func NewLimitOutOfRangeWithDefaults() *LimitOutOfRange

NewLimitOutOfRangeWithDefaults instantiates a new LimitOutOfRange 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

GetType

func (o *LimitOutOfRange) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *LimitOutOfRange) GetTypeOk() (*string, bool)

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

SetType

func (o *LimitOutOfRange) SetType(v string)

SetType sets Type field to given value.

GetMessage

func (o *LimitOutOfRange) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *LimitOutOfRange) GetMessageOk() (*string, bool)

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

SetMessage

func (o *LimitOutOfRange) SetMessage(v string)

SetMessage sets Message field to given value.

GetLimit

func (o *LimitOutOfRange) GetLimit() int32

GetLimit returns the Limit field if non-nil, zero value otherwise.

GetLimitOk

func (o *LimitOutOfRange) GetLimitOk() (*int32, bool)

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

SetLimit

func (o *LimitOutOfRange) SetLimit(v int32)

SetLimit sets Limit field to given value.

GetLowerBound

func (o *LimitOutOfRange) GetLowerBound() int32

GetLowerBound returns the LowerBound field if non-nil, zero value otherwise.

GetLowerBoundOk

func (o *LimitOutOfRange) GetLowerBoundOk() (*int32, bool)

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

SetLowerBound

func (o *LimitOutOfRange) SetLowerBound(v int32)

SetLowerBound sets LowerBound field to given value.

GetUpperBound

func (o *LimitOutOfRange) GetUpperBound() int32

GetUpperBound returns the UpperBound field if non-nil, zero value otherwise.

GetUpperBoundOk

func (o *LimitOutOfRange) GetUpperBoundOk() (*int32, bool)

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

SetUpperBound

func (o *LimitOutOfRange) SetUpperBound(v int32)

SetUpperBound sets UpperBound field to given value.

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