-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(generation): update request builders and models
Update generated files with build 163754
- Loading branch information
Microsoft Graph DevX Tooling
authored and
Microsoft Graph DevX Tooling
committed
Sep 18, 2024
1 parent
bd43bef
commit 676acb3
Showing
99 changed files
with
2,682 additions
and
375 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
package applications | ||
|
||
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) | ||
} | ||
// GetAutoReconcileProxyConflict gets the autoReconcileProxyConflict property value. The autoReconcileProxyConflict property | ||
// returns a *bool when successful | ||
func (m *ItemRestorePostRequestBody) GetAutoReconcileProxyConflict()(*bool) { | ||
val, err := m.GetBackingStore().Get("autoReconcileProxyConflict") | ||
if err != nil { | ||
panic(err) | ||
} | ||
if val != nil { | ||
return val.(*bool) | ||
} | ||
return nil | ||
} | ||
// 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["autoReconcileProxyConflict"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { | ||
val, err := n.GetBoolValue() | ||
if err != nil { | ||
return err | ||
} | ||
if val != nil { | ||
m.SetAutoReconcileProxyConflict(val) | ||
} | ||
return nil | ||
} | ||
return res | ||
} | ||
// Serialize serializes information the current object | ||
func (m *ItemRestorePostRequestBody) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { | ||
{ | ||
err := writer.WriteBoolValue("autoReconcileProxyConflict", m.GetAutoReconcileProxyConflict()) | ||
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) | ||
} | ||
} | ||
// SetAutoReconcileProxyConflict sets the autoReconcileProxyConflict property value. The autoReconcileProxyConflict property | ||
func (m *ItemRestorePostRequestBody) SetAutoReconcileProxyConflict(value *bool)() { | ||
err := m.GetBackingStore().Set("autoReconcileProxyConflict", 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 | ||
} | ||
type ItemRestorePostRequestBodyable interface { | ||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder | ||
ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackedModel | ||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable | ||
GetAutoReconcileProxyConflict()(*bool) | ||
GetBackingStore()(ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore) | ||
SetAutoReconcileProxyConflict(value *bool)() | ||
SetBackingStore(value ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore)() | ||
} |
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
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.