1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00
Files
installer/vendor/github.com/microsoftgraph/msgraph-sdk-go/models/email_authentication_method.go
2024-04-04 21:23:02 +02:00

78 lines
2.9 KiB
Go

package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
// EmailAuthenticationMethod
type EmailAuthenticationMethod struct {
AuthenticationMethod
}
// NewEmailAuthenticationMethod instantiates a new EmailAuthenticationMethod and sets the default values.
func NewEmailAuthenticationMethod()(*EmailAuthenticationMethod) {
m := &EmailAuthenticationMethod{
AuthenticationMethod: *NewAuthenticationMethod(),
}
odataTypeValue := "#microsoft.graph.emailAuthenticationMethod"
m.SetOdataType(&odataTypeValue)
return m
}
// CreateEmailAuthenticationMethodFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
func CreateEmailAuthenticationMethodFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewEmailAuthenticationMethod(), nil
}
// GetEmailAddress gets the emailAddress property value. The email address registered to this user.
func (m *EmailAuthenticationMethod) GetEmailAddress()(*string) {
val, err := m.GetBackingStore().Get("emailAddress")
if err != nil {
panic(err)
}
if val != nil {
return val.(*string)
}
return nil
}
// GetFieldDeserializers the deserialization information for the current model
func (m *EmailAuthenticationMethod) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.AuthenticationMethod.GetFieldDeserializers()
res["emailAddress"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetEmailAddress(val)
}
return nil
}
return res
}
// Serialize serializes information the current object
func (m *EmailAuthenticationMethod) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.AuthenticationMethod.Serialize(writer)
if err != nil {
return err
}
{
err = writer.WriteStringValue("emailAddress", m.GetEmailAddress())
if err != nil {
return err
}
}
return nil
}
// SetEmailAddress sets the emailAddress property value. The email address registered to this user.
func (m *EmailAuthenticationMethod) SetEmailAddress(value *string)() {
err := m.GetBackingStore().Set("emailAddress", value)
if err != nil {
panic(err)
}
}
// EmailAuthenticationMethodable
type EmailAuthenticationMethodable interface {
AuthenticationMethodable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetEmailAddress()(*string)
SetEmailAddress(value *string)()
}