influx-cli/api/model_user_response_links.gen.go

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