114 lines
2.7 KiB
Go
114 lines
2.7 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"
|
|
)
|
|
|
|
// UsersLinks struct for UsersLinks
|
|
type UsersLinks struct {
|
|
Self *string `json:"self,omitempty" yaml:"self,omitempty"`
|
|
}
|
|
|
|
// NewUsersLinks instantiates a new UsersLinks 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 NewUsersLinks() *UsersLinks {
|
|
this := UsersLinks{}
|
|
return &this
|
|
}
|
|
|
|
// NewUsersLinksWithDefaults instantiates a new UsersLinks 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 NewUsersLinksWithDefaults() *UsersLinks {
|
|
this := UsersLinks{}
|
|
return &this
|
|
}
|
|
|
|
// GetSelf returns the Self field value if set, zero value otherwise.
|
|
func (o *UsersLinks) 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 *UsersLinks) 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 *UsersLinks) 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 *UsersLinks) SetSelf(v string) {
|
|
o.Self = &v
|
|
}
|
|
|
|
func (o UsersLinks) MarshalJSON() ([]byte, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
if o.Self != nil {
|
|
toSerialize["self"] = o.Self
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
type NullableUsersLinks struct {
|
|
value *UsersLinks
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableUsersLinks) Get() *UsersLinks {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableUsersLinks) Set(val *UsersLinks) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableUsersLinks) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableUsersLinks) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableUsersLinks(val *UsersLinks) *NullableUsersLinks {
|
|
return &NullableUsersLinks{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableUsersLinks) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableUsersLinks) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|