mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 21:00:06 +01:00
fix: rename sdk to match repo & introduce git subtree
This commit is contained in:
378
sdk/go/model_models_user_email.go
Normal file
378
sdk/go/model_models_user_email.go
Normal file
@@ -0,0 +1,378 @@
|
||||
/*
|
||||
AutoGlue API
|
||||
|
||||
API for managing K3s clusters across cloud providers
|
||||
|
||||
API version: 1.0
|
||||
*/
|
||||
|
||||
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
||||
|
||||
package autoglue
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"time"
|
||||
)
|
||||
|
||||
// checks if the ModelsUserEmail type satisfies the MappedNullable interface at compile time
|
||||
var _ MappedNullable = &ModelsUserEmail{}
|
||||
|
||||
// ModelsUserEmail struct for ModelsUserEmail
|
||||
type ModelsUserEmail struct {
|
||||
CreatedAt *time.Time `json:"created_at,omitempty"`
|
||||
Email *string `json:"email,omitempty"`
|
||||
// example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
|
||||
Id *string `json:"id,omitempty"`
|
||||
IsPrimary *bool `json:"is_primary,omitempty"`
|
||||
IsVerified *bool `json:"is_verified,omitempty"`
|
||||
UpdatedAt *time.Time `json:"updated_at,omitempty"`
|
||||
User *ModelsUser `json:"user,omitempty"`
|
||||
UserId *string `json:"user_id,omitempty"`
|
||||
}
|
||||
|
||||
// NewModelsUserEmail instantiates a new ModelsUserEmail 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 NewModelsUserEmail() *ModelsUserEmail {
|
||||
this := ModelsUserEmail{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// NewModelsUserEmailWithDefaults instantiates a new ModelsUserEmail 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 NewModelsUserEmailWithDefaults() *ModelsUserEmail {
|
||||
this := ModelsUserEmail{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.
|
||||
func (o *ModelsUserEmail) GetCreatedAt() time.Time {
|
||||
if o == nil || IsNil(o.CreatedAt) {
|
||||
var ret time.Time
|
||||
return ret
|
||||
}
|
||||
return *o.CreatedAt
|
||||
}
|
||||
|
||||
// GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsUserEmail) GetCreatedAtOk() (*time.Time, bool) {
|
||||
if o == nil || IsNil(o.CreatedAt) {
|
||||
return nil, false
|
||||
}
|
||||
return o.CreatedAt, true
|
||||
}
|
||||
|
||||
// HasCreatedAt returns a boolean if a field has been set.
|
||||
func (o *ModelsUserEmail) HasCreatedAt() bool {
|
||||
if o != nil && !IsNil(o.CreatedAt) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.
|
||||
func (o *ModelsUserEmail) SetCreatedAt(v time.Time) {
|
||||
o.CreatedAt = &v
|
||||
}
|
||||
|
||||
// GetEmail returns the Email field value if set, zero value otherwise.
|
||||
func (o *ModelsUserEmail) GetEmail() string {
|
||||
if o == nil || IsNil(o.Email) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.Email
|
||||
}
|
||||
|
||||
// GetEmailOk returns a tuple with the Email field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsUserEmail) GetEmailOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.Email) {
|
||||
return nil, false
|
||||
}
|
||||
return o.Email, true
|
||||
}
|
||||
|
||||
// HasEmail returns a boolean if a field has been set.
|
||||
func (o *ModelsUserEmail) HasEmail() bool {
|
||||
if o != nil && !IsNil(o.Email) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetEmail gets a reference to the given string and assigns it to the Email field.
|
||||
func (o *ModelsUserEmail) SetEmail(v string) {
|
||||
o.Email = &v
|
||||
}
|
||||
|
||||
// GetId returns the Id field value if set, zero value otherwise.
|
||||
func (o *ModelsUserEmail) GetId() string {
|
||||
if o == nil || IsNil(o.Id) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.Id
|
||||
}
|
||||
|
||||
// GetIdOk returns a tuple with the Id field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsUserEmail) GetIdOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.Id) {
|
||||
return nil, false
|
||||
}
|
||||
return o.Id, true
|
||||
}
|
||||
|
||||
// HasId returns a boolean if a field has been set.
|
||||
func (o *ModelsUserEmail) HasId() bool {
|
||||
if o != nil && !IsNil(o.Id) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetId gets a reference to the given string and assigns it to the Id field.
|
||||
func (o *ModelsUserEmail) SetId(v string) {
|
||||
o.Id = &v
|
||||
}
|
||||
|
||||
// GetIsPrimary returns the IsPrimary field value if set, zero value otherwise.
|
||||
func (o *ModelsUserEmail) GetIsPrimary() bool {
|
||||
if o == nil || IsNil(o.IsPrimary) {
|
||||
var ret bool
|
||||
return ret
|
||||
}
|
||||
return *o.IsPrimary
|
||||
}
|
||||
|
||||
// GetIsPrimaryOk returns a tuple with the IsPrimary field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsUserEmail) GetIsPrimaryOk() (*bool, bool) {
|
||||
if o == nil || IsNil(o.IsPrimary) {
|
||||
return nil, false
|
||||
}
|
||||
return o.IsPrimary, true
|
||||
}
|
||||
|
||||
// HasIsPrimary returns a boolean if a field has been set.
|
||||
func (o *ModelsUserEmail) HasIsPrimary() bool {
|
||||
if o != nil && !IsNil(o.IsPrimary) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetIsPrimary gets a reference to the given bool and assigns it to the IsPrimary field.
|
||||
func (o *ModelsUserEmail) SetIsPrimary(v bool) {
|
||||
o.IsPrimary = &v
|
||||
}
|
||||
|
||||
// GetIsVerified returns the IsVerified field value if set, zero value otherwise.
|
||||
func (o *ModelsUserEmail) GetIsVerified() bool {
|
||||
if o == nil || IsNil(o.IsVerified) {
|
||||
var ret bool
|
||||
return ret
|
||||
}
|
||||
return *o.IsVerified
|
||||
}
|
||||
|
||||
// GetIsVerifiedOk returns a tuple with the IsVerified field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsUserEmail) GetIsVerifiedOk() (*bool, bool) {
|
||||
if o == nil || IsNil(o.IsVerified) {
|
||||
return nil, false
|
||||
}
|
||||
return o.IsVerified, true
|
||||
}
|
||||
|
||||
// HasIsVerified returns a boolean if a field has been set.
|
||||
func (o *ModelsUserEmail) HasIsVerified() bool {
|
||||
if o != nil && !IsNil(o.IsVerified) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetIsVerified gets a reference to the given bool and assigns it to the IsVerified field.
|
||||
func (o *ModelsUserEmail) SetIsVerified(v bool) {
|
||||
o.IsVerified = &v
|
||||
}
|
||||
|
||||
// GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.
|
||||
func (o *ModelsUserEmail) GetUpdatedAt() time.Time {
|
||||
if o == nil || IsNil(o.UpdatedAt) {
|
||||
var ret time.Time
|
||||
return ret
|
||||
}
|
||||
return *o.UpdatedAt
|
||||
}
|
||||
|
||||
// GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsUserEmail) GetUpdatedAtOk() (*time.Time, bool) {
|
||||
if o == nil || IsNil(o.UpdatedAt) {
|
||||
return nil, false
|
||||
}
|
||||
return o.UpdatedAt, true
|
||||
}
|
||||
|
||||
// HasUpdatedAt returns a boolean if a field has been set.
|
||||
func (o *ModelsUserEmail) HasUpdatedAt() bool {
|
||||
if o != nil && !IsNil(o.UpdatedAt) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.
|
||||
func (o *ModelsUserEmail) SetUpdatedAt(v time.Time) {
|
||||
o.UpdatedAt = &v
|
||||
}
|
||||
|
||||
// GetUser returns the User field value if set, zero value otherwise.
|
||||
func (o *ModelsUserEmail) GetUser() ModelsUser {
|
||||
if o == nil || IsNil(o.User) {
|
||||
var ret ModelsUser
|
||||
return ret
|
||||
}
|
||||
return *o.User
|
||||
}
|
||||
|
||||
// GetUserOk returns a tuple with the User field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsUserEmail) GetUserOk() (*ModelsUser, bool) {
|
||||
if o == nil || IsNil(o.User) {
|
||||
return nil, false
|
||||
}
|
||||
return o.User, true
|
||||
}
|
||||
|
||||
// HasUser returns a boolean if a field has been set.
|
||||
func (o *ModelsUserEmail) HasUser() bool {
|
||||
if o != nil && !IsNil(o.User) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetUser gets a reference to the given ModelsUser and assigns it to the User field.
|
||||
func (o *ModelsUserEmail) SetUser(v ModelsUser) {
|
||||
o.User = &v
|
||||
}
|
||||
|
||||
// GetUserId returns the UserId field value if set, zero value otherwise.
|
||||
func (o *ModelsUserEmail) GetUserId() string {
|
||||
if o == nil || IsNil(o.UserId) {
|
||||
var ret string
|
||||
return ret
|
||||
}
|
||||
return *o.UserId
|
||||
}
|
||||
|
||||
// GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ModelsUserEmail) GetUserIdOk() (*string, bool) {
|
||||
if o == nil || IsNil(o.UserId) {
|
||||
return nil, false
|
||||
}
|
||||
return o.UserId, true
|
||||
}
|
||||
|
||||
// HasUserId returns a boolean if a field has been set.
|
||||
func (o *ModelsUserEmail) HasUserId() bool {
|
||||
if o != nil && !IsNil(o.UserId) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetUserId gets a reference to the given string and assigns it to the UserId field.
|
||||
func (o *ModelsUserEmail) SetUserId(v string) {
|
||||
o.UserId = &v
|
||||
}
|
||||
|
||||
func (o ModelsUserEmail) MarshalJSON() ([]byte, error) {
|
||||
toSerialize, err := o.ToMap()
|
||||
if err != nil {
|
||||
return []byte{}, err
|
||||
}
|
||||
return json.Marshal(toSerialize)
|
||||
}
|
||||
|
||||
func (o ModelsUserEmail) ToMap() (map[string]interface{}, error) {
|
||||
toSerialize := map[string]interface{}{}
|
||||
if !IsNil(o.CreatedAt) {
|
||||
toSerialize["created_at"] = o.CreatedAt
|
||||
}
|
||||
if !IsNil(o.Email) {
|
||||
toSerialize["email"] = o.Email
|
||||
}
|
||||
if !IsNil(o.Id) {
|
||||
toSerialize["id"] = o.Id
|
||||
}
|
||||
if !IsNil(o.IsPrimary) {
|
||||
toSerialize["is_primary"] = o.IsPrimary
|
||||
}
|
||||
if !IsNil(o.IsVerified) {
|
||||
toSerialize["is_verified"] = o.IsVerified
|
||||
}
|
||||
if !IsNil(o.UpdatedAt) {
|
||||
toSerialize["updated_at"] = o.UpdatedAt
|
||||
}
|
||||
if !IsNil(o.User) {
|
||||
toSerialize["user"] = o.User
|
||||
}
|
||||
if !IsNil(o.UserId) {
|
||||
toSerialize["user_id"] = o.UserId
|
||||
}
|
||||
return toSerialize, nil
|
||||
}
|
||||
|
||||
type NullableModelsUserEmail struct {
|
||||
value *ModelsUserEmail
|
||||
isSet bool
|
||||
}
|
||||
|
||||
func (v NullableModelsUserEmail) Get() *ModelsUserEmail {
|
||||
return v.value
|
||||
}
|
||||
|
||||
func (v *NullableModelsUserEmail) Set(val *ModelsUserEmail) {
|
||||
v.value = val
|
||||
v.isSet = true
|
||||
}
|
||||
|
||||
func (v NullableModelsUserEmail) IsSet() bool {
|
||||
return v.isSet
|
||||
}
|
||||
|
||||
func (v *NullableModelsUserEmail) Unset() {
|
||||
v.value = nil
|
||||
v.isSet = false
|
||||
}
|
||||
|
||||
func NewNullableModelsUserEmail(val *ModelsUserEmail) *NullableModelsUserEmail {
|
||||
return &NullableModelsUserEmail{value: val, isSet: true}
|
||||
}
|
||||
|
||||
func (v NullableModelsUserEmail) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(v.value)
|
||||
}
|
||||
|
||||
func (v *NullableModelsUserEmail) UnmarshalJSON(src []byte) error {
|
||||
v.isSet = true
|
||||
return json.Unmarshal(src, &v.value)
|
||||
}
|
||||
Reference in New Issue
Block a user