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