| Name | Type | Description | Notes |
|---|---|---|---|
| Timestamp | Pointer to int32 | Value to use for subsequent requests. | [optional] |
| AggregateDelay | Pointer to int64 | How long the system will wait before aggregating messages for each second. The most recent data returned will have happened at the moment of the request, minus the aggregation delay. | [optional] |
| Data | Pointer to []RealtimeEntry | A list of records, each representing one second of time. | [optional] |
func NewRealtime() *Realtime
NewRealtime instantiates a new Realtime 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
func NewRealtimeWithDefaults() *Realtime
NewRealtimeWithDefaults instantiates a new Realtime 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
func (o *Realtime) GetTimestamp() int32
GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.
func (o *Realtime) GetTimestampOk() (*int32, 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.
func (o *Realtime) SetTimestamp(v int32)
SetTimestamp sets Timestamp field to given value.
func (o *Realtime) HasTimestamp() bool
HasTimestamp returns a boolean if a field has been set.
func (o *Realtime) GetAggregateDelay() int64
GetAggregateDelay returns the AggregateDelay field if non-nil, zero value otherwise.
func (o *Realtime) GetAggregateDelayOk() (*int64, bool)
GetAggregateDelayOk returns a tuple with the AggregateDelay field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Realtime) SetAggregateDelay(v int64)
SetAggregateDelay sets AggregateDelay field to given value.
func (o *Realtime) HasAggregateDelay() bool
HasAggregateDelay returns a boolean if a field has been set.
func (o *Realtime) GetData() []RealtimeEntry
GetData returns the Data field if non-nil, zero value otherwise.
func (o *Realtime) GetDataOk() (*[]RealtimeEntry, bool)
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Realtime) SetData(v []RealtimeEntry)
SetData sets Data field to given value.
func (o *Realtime) HasData() bool
HasData returns a boolean if a field has been set.