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