Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.88 KB

File metadata and controls

72 lines (39 loc) · 1.88 KB

CountBucket

Properties

Name Type Description Notes
Timestamp int64
Count int64

Methods

NewCountBucket

func NewCountBucket(timestamp int64, count int64, ) *CountBucket

NewCountBucket instantiates a new CountBucket 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

NewCountBucketWithDefaults

func NewCountBucketWithDefaults() *CountBucket

NewCountBucketWithDefaults instantiates a new CountBucket 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

GetTimestamp

func (o *CountBucket) GetTimestamp() int64

GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.

GetTimestampOk

func (o *CountBucket) GetTimestampOk() (*int64, bool)

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

SetTimestamp

func (o *CountBucket) SetTimestamp(v int64)

SetTimestamp sets Timestamp field to given value.

GetCount

func (o *CountBucket) GetCount() int64

GetCount returns the Count field if non-nil, zero value otherwise.

GetCountOk

func (o *CountBucket) GetCountOk() (*int64, bool)

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

SetCount

func (o *CountBucket) SetCount(v int64)

SetCount sets Count field to given value.

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