150 lines
3.5 KiB
Go
150 lines
3.5 KiB
Go
/*
|
|
* Subset of Influx API covered by Influx CLI
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* API version: 2.0.0
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package api
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// CellLinks struct for CellLinks
|
|
type CellLinks struct {
|
|
Self *string `json:"self,omitempty" yaml:"self,omitempty"`
|
|
View *string `json:"view,omitempty" yaml:"view,omitempty"`
|
|
}
|
|
|
|
// NewCellLinks instantiates a new CellLinks 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 NewCellLinks() *CellLinks {
|
|
this := CellLinks{}
|
|
return &this
|
|
}
|
|
|
|
// NewCellLinksWithDefaults instantiates a new CellLinks 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 NewCellLinksWithDefaults() *CellLinks {
|
|
this := CellLinks{}
|
|
return &this
|
|
}
|
|
|
|
// GetSelf returns the Self field value if set, zero value otherwise.
|
|
func (o *CellLinks) GetSelf() string {
|
|
if o == nil || o.Self == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.Self
|
|
}
|
|
|
|
// GetSelfOk returns a tuple with the Self field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *CellLinks) GetSelfOk() (*string, bool) {
|
|
if o == nil || o.Self == nil {
|
|
return nil, false
|
|
}
|
|
return o.Self, true
|
|
}
|
|
|
|
// HasSelf returns a boolean if a field has been set.
|
|
func (o *CellLinks) HasSelf() bool {
|
|
if o != nil && o.Self != nil {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetSelf gets a reference to the given string and assigns it to the Self field.
|
|
func (o *CellLinks) SetSelf(v string) {
|
|
o.Self = &v
|
|
}
|
|
|
|
// GetView returns the View field value if set, zero value otherwise.
|
|
func (o *CellLinks) GetView() string {
|
|
if o == nil || o.View == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.View
|
|
}
|
|
|
|
// GetViewOk returns a tuple with the View field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *CellLinks) GetViewOk() (*string, bool) {
|
|
if o == nil || o.View == nil {
|
|
return nil, false
|
|
}
|
|
return o.View, true
|
|
}
|
|
|
|
// HasView returns a boolean if a field has been set.
|
|
func (o *CellLinks) HasView() bool {
|
|
if o != nil && o.View != nil {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetView gets a reference to the given string and assigns it to the View field.
|
|
func (o *CellLinks) SetView(v string) {
|
|
o.View = &v
|
|
}
|
|
|
|
func (o CellLinks) MarshalJSON() ([]byte, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
if o.Self != nil {
|
|
toSerialize["self"] = o.Self
|
|
}
|
|
if o.View != nil {
|
|
toSerialize["view"] = o.View
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
type NullableCellLinks struct {
|
|
value *CellLinks
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableCellLinks) Get() *CellLinks {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableCellLinks) Set(val *CellLinks) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableCellLinks) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableCellLinks) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableCellLinks(val *CellLinks) *NullableCellLinks {
|
|
return &NullableCellLinks{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableCellLinks) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableCellLinks) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|