| Name | Type | Description | Notes |
|---|---|---|---|
| Links | map[string]interface{} | The location and content type of related resources | |
| Metadata | []map[string]interface{} | Metadata about each series | |
| Series | []map[string]float32 | An array of data points with timestamps. Each element of the array is an object with a 'time' field, whose value is the timestamp, and one or more key fields. If there are multiple key fields, they are labeled '0', '1', and so on, and are explained in the <code>metadata</code>. | |
| ProjectedSeries | Pointer to []map[string]float32 | Cumulative projected usage by day for the full billing period, when available. Each element matches the structure of <code>series</code>: an object with a 'time' field and a '0' value field. The projected (non-actual) portion begins where the actual <code>series</code> ends. | [optional] |
func NewSeriesListRepFloat(links map[string]interface{}, metadata []map[string]interface{}, series []map[string]float32, ) *SeriesListRepFloat
NewSeriesListRepFloat instantiates a new SeriesListRepFloat 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 NewSeriesListRepFloatWithDefaults() *SeriesListRepFloat
NewSeriesListRepFloatWithDefaults instantiates a new SeriesListRepFloat 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 *SeriesListRepFloat) GetLinks() map[string]interface{}
GetLinks returns the Links field if non-nil, zero value otherwise.
func (o *SeriesListRepFloat) GetLinksOk() (*map[string]interface{}, bool)
GetLinksOk returns a tuple with the Links field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SeriesListRepFloat) SetLinks(v map[string]interface{})
SetLinks sets Links field to given value.
func (o *SeriesListRepFloat) GetMetadata() []map[string]interface{}
GetMetadata returns the Metadata field if non-nil, zero value otherwise.
func (o *SeriesListRepFloat) GetMetadataOk() (*[]map[string]interface{}, bool)
GetMetadataOk returns a tuple with the Metadata field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SeriesListRepFloat) SetMetadata(v []map[string]interface{})
SetMetadata sets Metadata field to given value.
func (o *SeriesListRepFloat) GetSeries() []map[string]float32
GetSeries returns the Series field if non-nil, zero value otherwise.
func (o *SeriesListRepFloat) GetSeriesOk() (*[]map[string]float32, bool)
GetSeriesOk returns a tuple with the Series field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SeriesListRepFloat) SetSeries(v []map[string]float32)
SetSeries sets Series field to given value.
func (o *SeriesListRepFloat) GetProjectedSeries() []map[string]float32
GetProjectedSeries returns the ProjectedSeries field if non-nil, zero value otherwise.
func (o *SeriesListRepFloat) GetProjectedSeriesOk() (*[]map[string]float32, bool)
GetProjectedSeriesOk returns a tuple with the ProjectedSeries field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SeriesListRepFloat) SetProjectedSeries(v []map[string]float32)
SetProjectedSeries sets ProjectedSeries field to given value.
func (o *SeriesListRepFloat) HasProjectedSeries() bool
HasProjectedSeries returns a boolean if a field has been set.