Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.63 KB

BooleanKeyValue.md

File metadata and controls

134 lines (73 loc) · 3.63 KB

BooleanKeyValue

Properties

Name Type Description Notes
Value Pointer to bool [optional]
DurationSeconds Pointer to float64 [optional]
ExpiredAt Pointer to time.Time [optional]
CreatedAt Pointer to time.Time [optional]

Methods

NewBooleanKeyValue

func NewBooleanKeyValue() *BooleanKeyValue

NewBooleanKeyValue instantiates a new BooleanKeyValue 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

NewBooleanKeyValueWithDefaults

func NewBooleanKeyValueWithDefaults() *BooleanKeyValue

NewBooleanKeyValueWithDefaults instantiates a new BooleanKeyValue 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

GetValue

func (o *BooleanKeyValue) GetValue() bool

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *BooleanKeyValue) GetValueOk() (*bool, bool)

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

SetValue

func (o *BooleanKeyValue) SetValue(v bool)

SetValue sets Value field to given value.

HasValue

func (o *BooleanKeyValue) HasValue() bool

HasValue returns a boolean if a field has been set.

GetDurationSeconds

func (o *BooleanKeyValue) GetDurationSeconds() float64

GetDurationSeconds returns the DurationSeconds field if non-nil, zero value otherwise.

GetDurationSecondsOk

func (o *BooleanKeyValue) GetDurationSecondsOk() (*float64, bool)

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

SetDurationSeconds

func (o *BooleanKeyValue) SetDurationSeconds(v float64)

SetDurationSeconds sets DurationSeconds field to given value.

HasDurationSeconds

func (o *BooleanKeyValue) HasDurationSeconds() bool

HasDurationSeconds returns a boolean if a field has been set.

GetExpiredAt

func (o *BooleanKeyValue) GetExpiredAt() time.Time

GetExpiredAt returns the ExpiredAt field if non-nil, zero value otherwise.

GetExpiredAtOk

func (o *BooleanKeyValue) GetExpiredAtOk() (*time.Time, bool)

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

SetExpiredAt

func (o *BooleanKeyValue) SetExpiredAt(v time.Time)

SetExpiredAt sets ExpiredAt field to given value.

HasExpiredAt

func (o *BooleanKeyValue) HasExpiredAt() bool

HasExpiredAt returns a boolean if a field has been set.

GetCreatedAt

func (o *BooleanKeyValue) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *BooleanKeyValue) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *BooleanKeyValue) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

HasCreatedAt

func (o *BooleanKeyValue) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

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