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/shift_collection_response.go
2024-04-04 21:23:02 +02:00

84 lines
3.3 KiB
Go

package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
// ShiftCollectionResponse
type ShiftCollectionResponse struct {
BaseCollectionPaginationCountResponse
}
// NewShiftCollectionResponse instantiates a new ShiftCollectionResponse and sets the default values.
func NewShiftCollectionResponse()(*ShiftCollectionResponse) {
m := &ShiftCollectionResponse{
BaseCollectionPaginationCountResponse: *NewBaseCollectionPaginationCountResponse(),
}
return m
}
// CreateShiftCollectionResponseFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
func CreateShiftCollectionResponseFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewShiftCollectionResponse(), nil
}
// GetFieldDeserializers the deserialization information for the current model
func (m *ShiftCollectionResponse) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.BaseCollectionPaginationCountResponse.GetFieldDeserializers()
res["value"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreateShiftFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]Shiftable, len(val))
for i, v := range val {
res[i] = v.(Shiftable)
}
m.SetValue(res)
}
return nil
}
return res
}
// GetValue gets the value property value. The value property
func (m *ShiftCollectionResponse) GetValue()([]Shiftable) {
val, err := m.GetBackingStore().Get("value")
if err != nil {
panic(err)
}
if val != nil {
return val.([]Shiftable)
}
return nil
}
// Serialize serializes information the current object
func (m *ShiftCollectionResponse) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.BaseCollectionPaginationCountResponse.Serialize(writer)
if err != nil {
return err
}
if m.GetValue() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetValue()))
for i, v := range m.GetValue() {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
err = writer.WriteCollectionOfObjectValues("value", cast)
if err != nil {
return err
}
}
return nil
}
// SetValue sets the value property value. The value property
func (m *ShiftCollectionResponse) SetValue(value []Shiftable)() {
err := m.GetBackingStore().Set("value", value)
if err != nil {
panic(err)
}
}
// ShiftCollectionResponseable
type ShiftCollectionResponseable interface {
BaseCollectionPaginationCountResponseable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetValue()([]Shiftable)
SetValue(value []Shiftable)()
}