Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.84 KB

File metadata and controls

108 lines (59 loc) · 2.84 KB

MetricItemFields

Properties

Name Type Description Notes
Columns Pointer to []string [optional]
Data Pointer to [][]map[string]interface{} [optional]
Unit Pointer to string [optional]

Methods

NewMetricItemFields

func NewMetricItemFields() *MetricItemFields

NewMetricItemFields instantiates a new MetricItemFields 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

NewMetricItemFieldsWithDefaults

func NewMetricItemFieldsWithDefaults() *MetricItemFields

NewMetricItemFieldsWithDefaults instantiates a new MetricItemFields 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

GetColumns

func (o *MetricItemFields) GetColumns() []string

GetColumns returns the Columns field if non-nil, zero value otherwise.

GetColumnsOk

func (o *MetricItemFields) GetColumnsOk() (*[]string, bool)

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

SetColumns

func (o *MetricItemFields) SetColumns(v []string)

SetColumns sets Columns field to given value.

HasColumns

func (o *MetricItemFields) HasColumns() bool

HasColumns returns a boolean if a field has been set.

GetData

func (o *MetricItemFields) GetData() [][]map[string]interface{}

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *MetricItemFields) GetDataOk() (*[][]map[string]interface{}, 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.

SetData

func (o *MetricItemFields) SetData(v [][]map[string]interface{})

SetData sets Data field to given value.

HasData

func (o *MetricItemFields) HasData() bool

HasData returns a boolean if a field has been set.

GetUnit

func (o *MetricItemFields) GetUnit() string

GetUnit returns the Unit field if non-nil, zero value otherwise.

GetUnitOk

func (o *MetricItemFields) GetUnitOk() (*string, bool)

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

SetUnit

func (o *MetricItemFields) SetUnit(v string)

SetUnit sets Unit field to given value.

HasUnit

func (o *MetricItemFields) HasUnit() bool

HasUnit returns a boolean if a field has been set.

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