mirror of
https://github.com/openshift/installer.git
synced 2026-02-05 15:47:14 +01:00
84 lines
3.3 KiB
Go
84 lines
3.3 KiB
Go
package models
|
|
|
|
import (
|
|
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
|
|
)
|
|
|
|
// MessageCollectionResponse
|
|
type MessageCollectionResponse struct {
|
|
BaseCollectionPaginationCountResponse
|
|
}
|
|
// NewMessageCollectionResponse instantiates a new MessageCollectionResponse and sets the default values.
|
|
func NewMessageCollectionResponse()(*MessageCollectionResponse) {
|
|
m := &MessageCollectionResponse{
|
|
BaseCollectionPaginationCountResponse: *NewBaseCollectionPaginationCountResponse(),
|
|
}
|
|
return m
|
|
}
|
|
// CreateMessageCollectionResponseFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
|
func CreateMessageCollectionResponseFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
|
return NewMessageCollectionResponse(), nil
|
|
}
|
|
// GetFieldDeserializers the deserialization information for the current model
|
|
func (m *MessageCollectionResponse) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
|
res := m.BaseCollectionPaginationCountResponse.GetFieldDeserializers()
|
|
res["value"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
|
val, err := n.GetCollectionOfObjectValues(CreateMessageFromDiscriminatorValue)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if val != nil {
|
|
res := make([]Messageable, len(val))
|
|
for i, v := range val {
|
|
res[i] = v.(Messageable)
|
|
}
|
|
m.SetValue(res)
|
|
}
|
|
return nil
|
|
}
|
|
return res
|
|
}
|
|
// GetValue gets the value property value. The value property
|
|
func (m *MessageCollectionResponse) GetValue()([]Messageable) {
|
|
val, err := m.GetBackingStore().Get("value")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if val != nil {
|
|
return val.([]Messageable)
|
|
}
|
|
return nil
|
|
}
|
|
// Serialize serializes information the current object
|
|
func (m *MessageCollectionResponse) 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 *MessageCollectionResponse) SetValue(value []Messageable)() {
|
|
err := m.GetBackingStore().Set("value", value)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
// MessageCollectionResponseable
|
|
type MessageCollectionResponseable interface {
|
|
BaseCollectionPaginationCountResponseable
|
|
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
|
GetValue()([]Messageable)
|
|
SetValue(value []Messageable)()
|
|
}
|