-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #492 from microsoftgraph/beta/pipelinebuild/175190
Generated beta models and request builders
- Loading branch information
Showing
344 changed files
with
13,295 additions
and
5,826 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
package administrativeunits | ||
|
||
import ( | ||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization" | ||
ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e "github.com/microsoft/kiota-abstractions-go/store" | ||
) | ||
|
||
type ItemRestorePostRequestBody struct { | ||
// Stores model information. | ||
backingStore ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore | ||
} | ||
// NewItemRestorePostRequestBody instantiates a new ItemRestorePostRequestBody and sets the default values. | ||
func NewItemRestorePostRequestBody()(*ItemRestorePostRequestBody) { | ||
m := &ItemRestorePostRequestBody{ | ||
} | ||
m.backingStore = ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStoreFactoryInstance(); | ||
m.SetAdditionalData(make(map[string]any)) | ||
return m | ||
} | ||
// CreateItemRestorePostRequestBodyFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value | ||
// returns a Parsable when successful | ||
func CreateItemRestorePostRequestBodyFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) { | ||
return NewItemRestorePostRequestBody(), nil | ||
} | ||
// GetAdditionalData gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. | ||
// returns a map[string]any when successful | ||
func (m *ItemRestorePostRequestBody) GetAdditionalData()(map[string]any) { | ||
val , err := m.backingStore.Get("additionalData") | ||
if err != nil { | ||
panic(err) | ||
} | ||
if val == nil { | ||
var value = make(map[string]any); | ||
m.SetAdditionalData(value); | ||
} | ||
return val.(map[string]any) | ||
} | ||
// GetBackingStore gets the BackingStore property value. Stores model information. | ||
// returns a BackingStore when successful | ||
func (m *ItemRestorePostRequestBody) GetBackingStore()(ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore) { | ||
return m.backingStore | ||
} | ||
// GetFieldDeserializers the deserialization information for the current model | ||
// returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful | ||
func (m *ItemRestorePostRequestBody) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) { | ||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) | ||
res["newUserPrincipalName"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { | ||
val, err := n.GetStringValue() | ||
if err != nil { | ||
return err | ||
} | ||
if val != nil { | ||
m.SetNewUserPrincipalName(val) | ||
} | ||
return nil | ||
} | ||
return res | ||
} | ||
// GetNewUserPrincipalName gets the newUserPrincipalName property value. The newUserPrincipalName property | ||
// returns a *string when successful | ||
func (m *ItemRestorePostRequestBody) GetNewUserPrincipalName()(*string) { | ||
val, err := m.GetBackingStore().Get("newUserPrincipalName") | ||
if err != nil { | ||
panic(err) | ||
} | ||
if val != nil { | ||
return val.(*string) | ||
} | ||
return nil | ||
} | ||
// Serialize serializes information the current object | ||
func (m *ItemRestorePostRequestBody) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { | ||
{ | ||
err := writer.WriteStringValue("newUserPrincipalName", m.GetNewUserPrincipalName()) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
{ | ||
err := writer.WriteAdditionalData(m.GetAdditionalData()) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
return nil | ||
} | ||
// SetAdditionalData sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. | ||
func (m *ItemRestorePostRequestBody) SetAdditionalData(value map[string]any)() { | ||
err := m.GetBackingStore().Set("additionalData", value) | ||
if err != nil { | ||
panic(err) | ||
} | ||
} | ||
// SetBackingStore sets the BackingStore property value. Stores model information. | ||
func (m *ItemRestorePostRequestBody) SetBackingStore(value ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore)() { | ||
m.backingStore = value | ||
} | ||
// SetNewUserPrincipalName sets the newUserPrincipalName property value. The newUserPrincipalName property | ||
func (m *ItemRestorePostRequestBody) SetNewUserPrincipalName(value *string)() { | ||
err := m.GetBackingStore().Set("newUserPrincipalName", value) | ||
if err != nil { | ||
panic(err) | ||
} | ||
} | ||
type ItemRestorePostRequestBodyable interface { | ||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder | ||
ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackedModel | ||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable | ||
GetBackingStore()(ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore) | ||
GetNewUserPrincipalName()(*string) | ||
SetBackingStore(value ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore)() | ||
SetNewUserPrincipalName(value *string)() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.