/* * 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" ) // SecretKeys struct for SecretKeys type SecretKeys struct { Secrets *[]string `json:"secrets,omitempty" yaml:"secrets,omitempty"` } // NewSecretKeys instantiates a new SecretKeys 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 NewSecretKeys() *SecretKeys { this := SecretKeys{} return &this } // NewSecretKeysWithDefaults instantiates a new SecretKeys 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 NewSecretKeysWithDefaults() *SecretKeys { this := SecretKeys{} return &this } // GetSecrets returns the Secrets field value if set, zero value otherwise. func (o *SecretKeys) GetSecrets() []string { if o == nil || o.Secrets == nil { var ret []string return ret } return *o.Secrets } // GetSecretsOk returns a tuple with the Secrets field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *SecretKeys) GetSecretsOk() (*[]string, bool) { if o == nil || o.Secrets == nil { return nil, false } return o.Secrets, true } // HasSecrets returns a boolean if a field has been set. func (o *SecretKeys) HasSecrets() bool { if o != nil && o.Secrets != nil { return true } return false } // SetSecrets gets a reference to the given []string and assigns it to the Secrets field. func (o *SecretKeys) SetSecrets(v []string) { o.Secrets = &v } func (o SecretKeys) MarshalJSON() ([]byte, error) { toSerialize := map[string]interface{}{} if o.Secrets != nil { toSerialize["secrets"] = o.Secrets } return json.Marshal(toSerialize) } type NullableSecretKeys struct { value *SecretKeys isSet bool } func (v NullableSecretKeys) Get() *SecretKeys { return v.value } func (v *NullableSecretKeys) Set(val *SecretKeys) { v.value = val v.isSet = true } func (v NullableSecretKeys) IsSet() bool { return v.isSet } func (v *NullableSecretKeys) Unset() { v.value = nil v.isSet = false } func NewNullableSecretKeys(val *SecretKeys) *NullableSecretKeys { return &NullableSecretKeys{value: val, isSet: true} } func (v NullableSecretKeys) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } func (v *NullableSecretKeys) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) }