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"
|
|
)
|
|
|
|
// PrinterCollectionResponse
|
|
type PrinterCollectionResponse struct {
|
|
BaseCollectionPaginationCountResponse
|
|
}
|
|
// NewPrinterCollectionResponse instantiates a new PrinterCollectionResponse and sets the default values.
|
|
func NewPrinterCollectionResponse()(*PrinterCollectionResponse) {
|
|
m := &PrinterCollectionResponse{
|
|
BaseCollectionPaginationCountResponse: *NewBaseCollectionPaginationCountResponse(),
|
|
}
|
|
return m
|
|
}
|
|
// CreatePrinterCollectionResponseFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
|
func CreatePrinterCollectionResponseFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
|
return NewPrinterCollectionResponse(), nil
|
|
}
|
|
// GetFieldDeserializers the deserialization information for the current model
|
|
func (m *PrinterCollectionResponse) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
|
res := m.BaseCollectionPaginationCountResponse.GetFieldDeserializers()
|
|
res["value"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
|
val, err := n.GetCollectionOfObjectValues(CreatePrinterFromDiscriminatorValue)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if val != nil {
|
|
res := make([]Printerable, len(val))
|
|
for i, v := range val {
|
|
res[i] = v.(Printerable)
|
|
}
|
|
m.SetValue(res)
|
|
}
|
|
return nil
|
|
}
|
|
return res
|
|
}
|
|
// GetValue gets the value property value. The value property
|
|
func (m *PrinterCollectionResponse) GetValue()([]Printerable) {
|
|
val, err := m.GetBackingStore().Get("value")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if val != nil {
|
|
return val.([]Printerable)
|
|
}
|
|
return nil
|
|
}
|
|
// Serialize serializes information the current object
|
|
func (m *PrinterCollectionResponse) 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 *PrinterCollectionResponse) SetValue(value []Printerable)() {
|
|
err := m.GetBackingStore().Set("value", value)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
// PrinterCollectionResponseable
|
|
type PrinterCollectionResponseable interface {
|
|
BaseCollectionPaginationCountResponseable
|
|
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
|
GetValue()([]Printerable)
|
|
SetValue(value []Printerable)()
|
|
}
|