Run gofmt on beta package (#2340)
## Description This package is mostly generated code, but since it's not formatted and check in it causes subsequent runs of gofmt to format it and add chaff to git diff. Checking in the formatted version removes the chaff. ## Does this PR need a docs update or release note? - [ ] ✅ Yes, it's included - [ ] 🕐 Yes, but in a later PR - [x] ⛔ No ## Type of change - [ ] 🌻 Feature - [ ] 🐛 Bugfix - [ ] 🗺️ Documentation - [ ] 🤖 Test - [ ] 💻 CI/Deployment - [x] 🧹 Tech Debt/Cleanup
This commit is contained in:
parent
c510af3fda
commit
b5b4576393
@ -1,7 +1,9 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
// Provides operations to call the remove method.
|
||||
type HorizontalSectionLayoutType int
|
||||
|
||||
|
||||
@ -15,24 +15,27 @@ type MetaDataKeyStringPair struct {
|
||||
// Value of the meta data.
|
||||
value *string
|
||||
}
|
||||
|
||||
// NewMetaDataKeyStringPair instantiates a new metaDataKeyStringPair and sets the default values.
|
||||
func NewMetaDataKeyStringPair()(*MetaDataKeyStringPair) {
|
||||
m := &MetaDataKeyStringPair{
|
||||
}
|
||||
m.SetAdditionalData(make(map[string]interface{}));
|
||||
func NewMetaDataKeyStringPair() *MetaDataKeyStringPair {
|
||||
m := &MetaDataKeyStringPair{}
|
||||
m.SetAdditionalData(make(map[string]interface{}))
|
||||
return m
|
||||
}
|
||||
|
||||
// CreateMetaDataKeyStringPairFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
||||
func CreateMetaDataKeyStringPairFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) (i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
||||
return NewMetaDataKeyStringPair(), 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.
|
||||
func (m *MetaDataKeyStringPair) GetAdditionalData()(map[string]interface{}) {
|
||||
func (m *MetaDataKeyStringPair) GetAdditionalData() map[string]interface{} {
|
||||
return m.additionalData
|
||||
}
|
||||
|
||||
// GetFieldDeserializers the deserialization information for the current model
|
||||
func (m *MetaDataKeyStringPair) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error))
|
||||
func (m *MetaDataKeyStringPair) GetFieldDeserializers() map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error)
|
||||
res["key"] = func(n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
val, err := n.GetStringValue()
|
||||
if err != nil {
|
||||
@ -65,20 +68,24 @@ func (m *MetaDataKeyStringPair) GetFieldDeserializers()(map[string]func(i878a80d
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
// GetKey gets the key property value. Key of the meta data.
|
||||
func (m *MetaDataKeyStringPair) GetKey()(*string) {
|
||||
func (m *MetaDataKeyStringPair) GetKey() *string {
|
||||
return m.key
|
||||
}
|
||||
|
||||
// GetOdataType gets the @odata.type property value. The OdataType property
|
||||
func (m *MetaDataKeyStringPair) GetOdataType()(*string) {
|
||||
func (m *MetaDataKeyStringPair) GetOdataType() *string {
|
||||
return m.odataType
|
||||
}
|
||||
|
||||
// GetValue gets the value property value. Value of the meta data.
|
||||
func (m *MetaDataKeyStringPair) GetValue()(*string) {
|
||||
func (m *MetaDataKeyStringPair) GetValue() *string {
|
||||
return m.value
|
||||
}
|
||||
|
||||
// Serialize serializes information the current object
|
||||
func (m *MetaDataKeyStringPair) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
||||
func (m *MetaDataKeyStringPair) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter) error {
|
||||
{
|
||||
err := writer.WriteStringValue("key", m.GetKey())
|
||||
if err != nil {
|
||||
@ -105,19 +112,23 @@ func (m *MetaDataKeyStringPair) Serialize(writer i878a80d2330e89d26896388a3f487e
|
||||
}
|
||||
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 *MetaDataKeyStringPair) SetAdditionalData(value map[string]interface{})() {
|
||||
func (m *MetaDataKeyStringPair) SetAdditionalData(value map[string]interface{}) {
|
||||
m.additionalData = value
|
||||
}
|
||||
|
||||
// SetKey sets the key property value. Key of the meta data.
|
||||
func (m *MetaDataKeyStringPair) SetKey(value *string)() {
|
||||
func (m *MetaDataKeyStringPair) SetKey(value *string) {
|
||||
m.key = value
|
||||
}
|
||||
|
||||
// SetOdataType sets the @odata.type property value. The OdataType property
|
||||
func (m *MetaDataKeyStringPair) SetOdataType(value *string)() {
|
||||
func (m *MetaDataKeyStringPair) SetOdataType(value *string) {
|
||||
m.odataType = value
|
||||
}
|
||||
|
||||
// SetValue sets the value property value. Value of the meta data.
|
||||
func (m *MetaDataKeyStringPair) SetValue(value *string)() {
|
||||
func (m *MetaDataKeyStringPair) SetValue(value *string) {
|
||||
m.value = value
|
||||
}
|
||||
|
||||
@ -8,10 +8,10 @@ import (
|
||||
type MetaDataKeyStringPairable interface {
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
||||
GetKey()(*string)
|
||||
GetOdataType()(*string)
|
||||
GetValue()(*string)
|
||||
SetKey(value *string)()
|
||||
SetOdataType(value *string)()
|
||||
SetValue(value *string)()
|
||||
GetKey() *string
|
||||
GetOdataType() *string
|
||||
GetValue() *string
|
||||
SetKey(value *string)
|
||||
SetOdataType(value *string)
|
||||
SetValue(value *string)
|
||||
}
|
||||
|
||||
@ -1,7 +1,9 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
// Provides operations to call the remove method.
|
||||
type PageLayoutType int
|
||||
|
||||
|
||||
@ -1,7 +1,9 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
// Provides operations to call the remove method.
|
||||
type PagePromotionType int
|
||||
|
||||
|
||||
@ -15,24 +15,27 @@ type PublicationFacet struct {
|
||||
// The unique identifier for the version that is visible to the current caller. Read-only.
|
||||
versionId *string
|
||||
}
|
||||
|
||||
// NewPublicationFacet instantiates a new publicationFacet and sets the default values.
|
||||
func NewPublicationFacet()(*PublicationFacet) {
|
||||
m := &PublicationFacet{
|
||||
}
|
||||
m.SetAdditionalData(make(map[string]interface{}));
|
||||
func NewPublicationFacet() *PublicationFacet {
|
||||
m := &PublicationFacet{}
|
||||
m.SetAdditionalData(make(map[string]interface{}))
|
||||
return m
|
||||
}
|
||||
|
||||
// CreatePublicationFacetFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
||||
func CreatePublicationFacetFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) (i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
||||
return NewPublicationFacet(), 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.
|
||||
func (m *PublicationFacet) GetAdditionalData()(map[string]interface{}) {
|
||||
func (m *PublicationFacet) GetAdditionalData() map[string]interface{} {
|
||||
return m.additionalData
|
||||
}
|
||||
|
||||
// GetFieldDeserializers the deserialization information for the current model
|
||||
func (m *PublicationFacet) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error))
|
||||
func (m *PublicationFacet) GetFieldDeserializers() map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error)
|
||||
res["level"] = func(n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
val, err := n.GetStringValue()
|
||||
if err != nil {
|
||||
@ -65,20 +68,24 @@ func (m *PublicationFacet) GetFieldDeserializers()(map[string]func(i878a80d2330e
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
// GetLevel gets the level property value. The state of publication for this document. Either published or checkout. Read-only.
|
||||
func (m *PublicationFacet) GetLevel()(*string) {
|
||||
func (m *PublicationFacet) GetLevel() *string {
|
||||
return m.level
|
||||
}
|
||||
|
||||
// GetOdataType gets the @odata.type property value. The OdataType property
|
||||
func (m *PublicationFacet) GetOdataType()(*string) {
|
||||
func (m *PublicationFacet) GetOdataType() *string {
|
||||
return m.odataType
|
||||
}
|
||||
|
||||
// GetVersionId gets the versionId property value. The unique identifier for the version that is visible to the current caller. Read-only.
|
||||
func (m *PublicationFacet) GetVersionId()(*string) {
|
||||
func (m *PublicationFacet) GetVersionId() *string {
|
||||
return m.versionId
|
||||
}
|
||||
|
||||
// Serialize serializes information the current object
|
||||
func (m *PublicationFacet) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
||||
func (m *PublicationFacet) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter) error {
|
||||
{
|
||||
err := writer.WriteStringValue("level", m.GetLevel())
|
||||
if err != nil {
|
||||
@ -105,19 +112,23 @@ func (m *PublicationFacet) Serialize(writer i878a80d2330e89d26896388a3f487eef27b
|
||||
}
|
||||
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 *PublicationFacet) SetAdditionalData(value map[string]interface{})() {
|
||||
func (m *PublicationFacet) SetAdditionalData(value map[string]interface{}) {
|
||||
m.additionalData = value
|
||||
}
|
||||
|
||||
// SetLevel sets the level property value. The state of publication for this document. Either published or checkout. Read-only.
|
||||
func (m *PublicationFacet) SetLevel(value *string)() {
|
||||
func (m *PublicationFacet) SetLevel(value *string) {
|
||||
m.level = value
|
||||
}
|
||||
|
||||
// SetOdataType sets the @odata.type property value. The OdataType property
|
||||
func (m *PublicationFacet) SetOdataType(value *string)() {
|
||||
func (m *PublicationFacet) SetOdataType(value *string) {
|
||||
m.odataType = value
|
||||
}
|
||||
|
||||
// SetVersionId sets the versionId property value. The unique identifier for the version that is visible to the current caller. Read-only.
|
||||
func (m *PublicationFacet) SetVersionId(value *string)() {
|
||||
func (m *PublicationFacet) SetVersionId(value *string) {
|
||||
m.versionId = value
|
||||
}
|
||||
|
||||
@ -8,10 +8,10 @@ import (
|
||||
type PublicationFacetable interface {
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
||||
GetLevel()(*string)
|
||||
GetOdataType()(*string)
|
||||
GetVersionId()(*string)
|
||||
SetLevel(value *string)()
|
||||
SetOdataType(value *string)()
|
||||
SetVersionId(value *string)()
|
||||
GetLevel() *string
|
||||
GetOdataType() *string
|
||||
GetVersionId() *string
|
||||
SetLevel(value *string)
|
||||
SetOdataType(value *string)
|
||||
SetVersionId(value *string)
|
||||
}
|
||||
|
||||
@ -17,28 +17,32 @@ type ReactionsFacet struct {
|
||||
// Count of shares.
|
||||
shareCount *int32
|
||||
}
|
||||
|
||||
// NewReactionsFacet instantiates a new reactionsFacet and sets the default values.
|
||||
func NewReactionsFacet()(*ReactionsFacet) {
|
||||
m := &ReactionsFacet{
|
||||
}
|
||||
m.SetAdditionalData(make(map[string]interface{}));
|
||||
func NewReactionsFacet() *ReactionsFacet {
|
||||
m := &ReactionsFacet{}
|
||||
m.SetAdditionalData(make(map[string]interface{}))
|
||||
return m
|
||||
}
|
||||
|
||||
// CreateReactionsFacetFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
||||
func CreateReactionsFacetFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) (i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
||||
return NewReactionsFacet(), 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.
|
||||
func (m *ReactionsFacet) GetAdditionalData()(map[string]interface{}) {
|
||||
func (m *ReactionsFacet) GetAdditionalData() map[string]interface{} {
|
||||
return m.additionalData
|
||||
}
|
||||
|
||||
// GetCommentCount gets the commentCount property value. Count of comments.
|
||||
func (m *ReactionsFacet) GetCommentCount()(*int32) {
|
||||
func (m *ReactionsFacet) GetCommentCount() *int32 {
|
||||
return m.commentCount
|
||||
}
|
||||
|
||||
// GetFieldDeserializers the deserialization information for the current model
|
||||
func (m *ReactionsFacet) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error))
|
||||
func (m *ReactionsFacet) GetFieldDeserializers() map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error)
|
||||
res["commentCount"] = func(n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
val, err := n.GetInt32Value()
|
||||
if err != nil {
|
||||
@ -81,20 +85,24 @@ func (m *ReactionsFacet) GetFieldDeserializers()(map[string]func(i878a80d2330e89
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
// GetLikeCount gets the likeCount property value. Count of likes.
|
||||
func (m *ReactionsFacet) GetLikeCount()(*int32) {
|
||||
func (m *ReactionsFacet) GetLikeCount() *int32 {
|
||||
return m.likeCount
|
||||
}
|
||||
|
||||
// GetOdataType gets the @odata.type property value. The OdataType property
|
||||
func (m *ReactionsFacet) GetOdataType()(*string) {
|
||||
func (m *ReactionsFacet) GetOdataType() *string {
|
||||
return m.odataType
|
||||
}
|
||||
|
||||
// GetShareCount gets the shareCount property value. Count of shares.
|
||||
func (m *ReactionsFacet) GetShareCount()(*int32) {
|
||||
func (m *ReactionsFacet) GetShareCount() *int32 {
|
||||
return m.shareCount
|
||||
}
|
||||
|
||||
// Serialize serializes information the current object
|
||||
func (m *ReactionsFacet) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
||||
func (m *ReactionsFacet) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter) error {
|
||||
{
|
||||
err := writer.WriteInt32Value("commentCount", m.GetCommentCount())
|
||||
if err != nil {
|
||||
@ -127,23 +135,28 @@ func (m *ReactionsFacet) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a
|
||||
}
|
||||
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 *ReactionsFacet) SetAdditionalData(value map[string]interface{})() {
|
||||
func (m *ReactionsFacet) SetAdditionalData(value map[string]interface{}) {
|
||||
m.additionalData = value
|
||||
}
|
||||
|
||||
// SetCommentCount sets the commentCount property value. Count of comments.
|
||||
func (m *ReactionsFacet) SetCommentCount(value *int32)() {
|
||||
func (m *ReactionsFacet) SetCommentCount(value *int32) {
|
||||
m.commentCount = value
|
||||
}
|
||||
|
||||
// SetLikeCount sets the likeCount property value. Count of likes.
|
||||
func (m *ReactionsFacet) SetLikeCount(value *int32)() {
|
||||
func (m *ReactionsFacet) SetLikeCount(value *int32) {
|
||||
m.likeCount = value
|
||||
}
|
||||
|
||||
// SetOdataType sets the @odata.type property value. The OdataType property
|
||||
func (m *ReactionsFacet) SetOdataType(value *string)() {
|
||||
func (m *ReactionsFacet) SetOdataType(value *string) {
|
||||
m.odataType = value
|
||||
}
|
||||
|
||||
// SetShareCount sets the shareCount property value. Count of shares.
|
||||
func (m *ReactionsFacet) SetShareCount(value *int32)() {
|
||||
func (m *ReactionsFacet) SetShareCount(value *int32) {
|
||||
m.shareCount = value
|
||||
}
|
||||
|
||||
@ -8,12 +8,12 @@ import (
|
||||
type ReactionsFacetable interface {
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
||||
GetCommentCount()(*int32)
|
||||
GetLikeCount()(*int32)
|
||||
GetOdataType()(*string)
|
||||
GetShareCount()(*int32)
|
||||
SetCommentCount(value *int32)()
|
||||
SetLikeCount(value *int32)()
|
||||
SetOdataType(value *string)()
|
||||
SetShareCount(value *int32)()
|
||||
GetCommentCount() *int32
|
||||
GetLikeCount() *int32
|
||||
GetOdataType() *string
|
||||
GetShareCount() *int32
|
||||
SetCommentCount(value *int32)
|
||||
SetLikeCount(value *int32)
|
||||
SetOdataType(value *string)
|
||||
SetShareCount(value *int32)
|
||||
}
|
||||
|
||||
@ -1,7 +1,9 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
// Provides operations to call the remove method.
|
||||
type SectionEmphasisType int
|
||||
|
||||
|
||||
@ -1,7 +1,9 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
// Provides operations to call the remove method.
|
||||
type SiteAccessType int
|
||||
|
||||
|
||||
@ -1,7 +1,9 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
// Provides operations to call the add method.
|
||||
type SiteSecurityLevel int
|
||||
|
||||
|
||||
@ -15,24 +15,27 @@ type SiteSettings struct {
|
||||
// Indicates the time offset for the time zone of the site from Coordinated Universal Time (UTC).
|
||||
timeZone *string
|
||||
}
|
||||
|
||||
// NewSiteSettings instantiates a new siteSettings and sets the default values.
|
||||
func NewSiteSettings()(*SiteSettings) {
|
||||
m := &SiteSettings{
|
||||
}
|
||||
m.SetAdditionalData(make(map[string]interface{}));
|
||||
func NewSiteSettings() *SiteSettings {
|
||||
m := &SiteSettings{}
|
||||
m.SetAdditionalData(make(map[string]interface{}))
|
||||
return m
|
||||
}
|
||||
|
||||
// CreateSiteSettingsFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
||||
func CreateSiteSettingsFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) (i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
||||
return NewSiteSettings(), 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.
|
||||
func (m *SiteSettings) GetAdditionalData()(map[string]interface{}) {
|
||||
func (m *SiteSettings) GetAdditionalData() map[string]interface{} {
|
||||
return m.additionalData
|
||||
}
|
||||
|
||||
// GetFieldDeserializers the deserialization information for the current model
|
||||
func (m *SiteSettings) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error))
|
||||
func (m *SiteSettings) GetFieldDeserializers() map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error)
|
||||
res["languageTag"] = func(n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
val, err := n.GetStringValue()
|
||||
if err != nil {
|
||||
@ -65,20 +68,24 @@ func (m *SiteSettings) GetFieldDeserializers()(map[string]func(i878a80d2330e89d2
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
// GetLanguageTag gets the languageTag property value. The language tag for the language used on this site.
|
||||
func (m *SiteSettings) GetLanguageTag()(*string) {
|
||||
func (m *SiteSettings) GetLanguageTag() *string {
|
||||
return m.languageTag
|
||||
}
|
||||
|
||||
// GetOdataType gets the @odata.type property value. The OdataType property
|
||||
func (m *SiteSettings) GetOdataType()(*string) {
|
||||
func (m *SiteSettings) GetOdataType() *string {
|
||||
return m.odataType
|
||||
}
|
||||
|
||||
// GetTimeZone gets the timeZone property value. Indicates the time offset for the time zone of the site from Coordinated Universal Time (UTC).
|
||||
func (m *SiteSettings) GetTimeZone()(*string) {
|
||||
func (m *SiteSettings) GetTimeZone() *string {
|
||||
return m.timeZone
|
||||
}
|
||||
|
||||
// Serialize serializes information the current object
|
||||
func (m *SiteSettings) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
||||
func (m *SiteSettings) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter) error {
|
||||
{
|
||||
err := writer.WriteStringValue("languageTag", m.GetLanguageTag())
|
||||
if err != nil {
|
||||
@ -105,19 +112,23 @@ func (m *SiteSettings) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e
|
||||
}
|
||||
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 *SiteSettings) SetAdditionalData(value map[string]interface{})() {
|
||||
func (m *SiteSettings) SetAdditionalData(value map[string]interface{}) {
|
||||
m.additionalData = value
|
||||
}
|
||||
|
||||
// SetLanguageTag sets the languageTag property value. The language tag for the language used on this site.
|
||||
func (m *SiteSettings) SetLanguageTag(value *string)() {
|
||||
func (m *SiteSettings) SetLanguageTag(value *string) {
|
||||
m.languageTag = value
|
||||
}
|
||||
|
||||
// SetOdataType sets the @odata.type property value. The OdataType property
|
||||
func (m *SiteSettings) SetOdataType(value *string)() {
|
||||
func (m *SiteSettings) SetOdataType(value *string) {
|
||||
m.odataType = value
|
||||
}
|
||||
|
||||
// SetTimeZone sets the timeZone property value. Indicates the time offset for the time zone of the site from Coordinated Universal Time (UTC).
|
||||
func (m *SiteSettings) SetTimeZone(value *string)() {
|
||||
func (m *SiteSettings) SetTimeZone(value *string) {
|
||||
m.timeZone = value
|
||||
}
|
||||
|
||||
@ -8,10 +8,10 @@ import (
|
||||
type SiteSettingsable interface {
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
||||
GetLanguageTag()(*string)
|
||||
GetOdataType()(*string)
|
||||
GetTimeZone()(*string)
|
||||
SetLanguageTag(value *string)()
|
||||
SetOdataType(value *string)()
|
||||
SetTimeZone(value *string)()
|
||||
GetLanguageTag() *string
|
||||
GetOdataType() *string
|
||||
GetTimeZone() *string
|
||||
SetLanguageTag(value *string)
|
||||
SetOdataType(value *string)
|
||||
SetTimeZone(value *string)
|
||||
}
|
||||
|
||||
@ -12,25 +12,29 @@ type StandardWebPart struct {
|
||||
// A Guid which indicates the type of the webParts
|
||||
webPartType *string
|
||||
}
|
||||
|
||||
// NewStandardWebPart instantiates a new StandardWebPart and sets the default values.
|
||||
func NewStandardWebPart()(*StandardWebPart) {
|
||||
func NewStandardWebPart() *StandardWebPart {
|
||||
m := &StandardWebPart{
|
||||
WebPart: *NewWebPart(),
|
||||
}
|
||||
odataTypeValue := "#microsoft.graph.standardWebPart";
|
||||
m.SetOdataType(&odataTypeValue);
|
||||
odataTypeValue := "#microsoft.graph.standardWebPart"
|
||||
m.SetOdataType(&odataTypeValue)
|
||||
return m
|
||||
}
|
||||
|
||||
// CreateStandardWebPartFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
||||
func CreateStandardWebPartFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) (i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
||||
return NewStandardWebPart(), nil
|
||||
}
|
||||
|
||||
// GetData gets the data property value. Data of the webPart.
|
||||
func (m *StandardWebPart) GetData()(WebPartDataable) {
|
||||
func (m *StandardWebPart) GetData() WebPartDataable {
|
||||
return m.data
|
||||
}
|
||||
|
||||
// GetFieldDeserializers the deserialization information for the current model
|
||||
func (m *StandardWebPart) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
||||
func (m *StandardWebPart) GetFieldDeserializers() map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
res := m.WebPart.GetFieldDeserializers()
|
||||
res["data"] = func(n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
val, err := n.GetObjectValue(CreateWebPartDataFromDiscriminatorValue)
|
||||
@ -54,12 +58,14 @@ func (m *StandardWebPart) GetFieldDeserializers()(map[string]func(i878a80d2330e8
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
// GetWebPartType gets the webPartType property value. A Guid which indicates the type of the webParts
|
||||
func (m *StandardWebPart) GetWebPartType()(*string) {
|
||||
func (m *StandardWebPart) GetWebPartType() *string {
|
||||
return m.webPartType
|
||||
}
|
||||
|
||||
// Serialize serializes information the current object
|
||||
func (m *StandardWebPart) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
||||
func (m *StandardWebPart) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter) error {
|
||||
err := m.WebPart.Serialize(writer)
|
||||
if err != nil {
|
||||
return err
|
||||
@ -78,11 +84,13 @@ func (m *StandardWebPart) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// SetData sets the data property value. Data of the webPart.
|
||||
func (m *StandardWebPart) SetData(value WebPartDataable)() {
|
||||
func (m *StandardWebPart) SetData(value WebPartDataable) {
|
||||
m.data = value
|
||||
}
|
||||
|
||||
// SetWebPartType sets the webPartType property value. A Guid which indicates the type of the webParts
|
||||
func (m *StandardWebPart) SetWebPartType(value *string)() {
|
||||
func (m *StandardWebPart) SetWebPartType(value *string) {
|
||||
m.webPartType = value
|
||||
}
|
||||
|
||||
@ -8,8 +8,8 @@ import (
|
||||
type StandardWebPartable interface {
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
||||
WebPartable
|
||||
GetData()(WebPartDataable)
|
||||
GetWebPartType()(*string)
|
||||
SetData(value WebPartDataable)()
|
||||
SetWebPartType(value *string)()
|
||||
GetData() WebPartDataable
|
||||
GetWebPartType() *string
|
||||
SetData(value WebPartDataable)
|
||||
SetWebPartType(value *string)
|
||||
}
|
||||
|
||||
@ -10,21 +10,24 @@ type TextWebPart struct {
|
||||
// The HTML string in text web part.
|
||||
innerHtml *string
|
||||
}
|
||||
|
||||
// NewTextWebPart instantiates a new TextWebPart and sets the default values.
|
||||
func NewTextWebPart()(*TextWebPart) {
|
||||
func NewTextWebPart() *TextWebPart {
|
||||
m := &TextWebPart{
|
||||
WebPart: *NewWebPart(),
|
||||
}
|
||||
odataTypeValue := "#microsoft.graph.textWebPart";
|
||||
m.SetOdataType(&odataTypeValue);
|
||||
odataTypeValue := "#microsoft.graph.textWebPart"
|
||||
m.SetOdataType(&odataTypeValue)
|
||||
return m
|
||||
}
|
||||
|
||||
// CreateTextWebPartFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
||||
func CreateTextWebPartFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) (i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
||||
return NewTextWebPart(), nil
|
||||
}
|
||||
|
||||
// GetFieldDeserializers the deserialization information for the current model
|
||||
func (m *TextWebPart) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
||||
func (m *TextWebPart) GetFieldDeserializers() map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
res := m.WebPart.GetFieldDeserializers()
|
||||
res["innerHtml"] = func(n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
val, err := n.GetStringValue()
|
||||
@ -38,12 +41,14 @@ func (m *TextWebPart) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
// GetInnerHtml gets the innerHtml property value. The HTML string in text web part.
|
||||
func (m *TextWebPart) GetInnerHtml()(*string) {
|
||||
func (m *TextWebPart) GetInnerHtml() *string {
|
||||
return m.innerHtml
|
||||
}
|
||||
|
||||
// Serialize serializes information the current object
|
||||
func (m *TextWebPart) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
||||
func (m *TextWebPart) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter) error {
|
||||
err := m.WebPart.Serialize(writer)
|
||||
if err != nil {
|
||||
return err
|
||||
@ -56,7 +61,8 @@ func (m *TextWebPart) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// SetInnerHtml sets the innerHtml property value. The HTML string in text web part.
|
||||
func (m *TextWebPart) SetInnerHtml(value *string)() {
|
||||
func (m *TextWebPart) SetInnerHtml(value *string) {
|
||||
m.innerHtml = value
|
||||
}
|
||||
|
||||
@ -8,6 +8,6 @@ import (
|
||||
type TextWebPartable interface {
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
||||
WebPartable
|
||||
GetInnerHtml()(*string)
|
||||
SetInnerHtml(value *string)()
|
||||
GetInnerHtml() *string
|
||||
SetInnerHtml(value *string)
|
||||
}
|
||||
|
||||
@ -1,7 +1,9 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
// Provides operations to call the remove method.
|
||||
type TitleAreaLayoutType int
|
||||
|
||||
|
||||
@ -1,7 +1,9 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
// Provides operations to call the remove method.
|
||||
type TitleAreaTextAlignmentType int
|
||||
|
||||
|
||||
@ -19,28 +19,32 @@ type WebPartPosition struct {
|
||||
// Index of the current web part. Represents the order of the web part in this column or section.
|
||||
webPartIndex *float64
|
||||
}
|
||||
|
||||
// NewWebPartPosition instantiates a new webPartPosition and sets the default values.
|
||||
func NewWebPartPosition()(*WebPartPosition) {
|
||||
m := &WebPartPosition{
|
||||
}
|
||||
m.SetAdditionalData(make(map[string]interface{}));
|
||||
func NewWebPartPosition() *WebPartPosition {
|
||||
m := &WebPartPosition{}
|
||||
m.SetAdditionalData(make(map[string]interface{}))
|
||||
return m
|
||||
}
|
||||
|
||||
// CreateWebPartPositionFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
||||
func CreateWebPartPositionFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) (i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
||||
return NewWebPartPosition(), 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.
|
||||
func (m *WebPartPosition) GetAdditionalData()(map[string]interface{}) {
|
||||
func (m *WebPartPosition) GetAdditionalData() map[string]interface{} {
|
||||
return m.additionalData
|
||||
}
|
||||
|
||||
// GetColumnId gets the columnId property value. Indicates the identifier of the column where the web part is located.
|
||||
func (m *WebPartPosition) GetColumnId()(*float64) {
|
||||
func (m *WebPartPosition) GetColumnId() *float64 {
|
||||
return m.columnId
|
||||
}
|
||||
|
||||
// GetFieldDeserializers the deserialization information for the current model
|
||||
func (m *WebPartPosition) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error))
|
||||
func (m *WebPartPosition) GetFieldDeserializers() map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error)
|
||||
res["columnId"] = func(n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||||
val, err := n.GetFloat64Value()
|
||||
if err != nil {
|
||||
@ -93,24 +97,29 @@ func (m *WebPartPosition) GetFieldDeserializers()(map[string]func(i878a80d2330e8
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
// GetHorizontalSectionId gets the horizontalSectionId property value. Indicates the horizontal section where the web part is located.
|
||||
func (m *WebPartPosition) GetHorizontalSectionId()(*float64) {
|
||||
func (m *WebPartPosition) GetHorizontalSectionId() *float64 {
|
||||
return m.horizontalSectionId
|
||||
}
|
||||
|
||||
// GetIsInVerticalSection gets the isInVerticalSection property value. Indicates whether the web part is located in the vertical section.
|
||||
func (m *WebPartPosition) GetIsInVerticalSection()(*bool) {
|
||||
func (m *WebPartPosition) GetIsInVerticalSection() *bool {
|
||||
return m.isInVerticalSection
|
||||
}
|
||||
|
||||
// GetOdataType gets the @odata.type property value. The OdataType property
|
||||
func (m *WebPartPosition) GetOdataType()(*string) {
|
||||
func (m *WebPartPosition) GetOdataType() *string {
|
||||
return m.odataType
|
||||
}
|
||||
|
||||
// GetWebPartIndex gets the webPartIndex property value. Index of the current web part. Represents the order of the web part in this column or section.
|
||||
func (m *WebPartPosition) GetWebPartIndex()(*float64) {
|
||||
func (m *WebPartPosition) GetWebPartIndex() *float64 {
|
||||
return m.webPartIndex
|
||||
}
|
||||
|
||||
// Serialize serializes information the current object
|
||||
func (m *WebPartPosition) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
||||
func (m *WebPartPosition) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter) error {
|
||||
{
|
||||
err := writer.WriteFloat64Value("columnId", m.GetColumnId())
|
||||
if err != nil {
|
||||
@ -149,27 +158,33 @@ func (m *WebPartPosition) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0
|
||||
}
|
||||
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 *WebPartPosition) SetAdditionalData(value map[string]interface{})() {
|
||||
func (m *WebPartPosition) SetAdditionalData(value map[string]interface{}) {
|
||||
m.additionalData = value
|
||||
}
|
||||
|
||||
// SetColumnId sets the columnId property value. Indicates the identifier of the column where the web part is located.
|
||||
func (m *WebPartPosition) SetColumnId(value *float64)() {
|
||||
func (m *WebPartPosition) SetColumnId(value *float64) {
|
||||
m.columnId = value
|
||||
}
|
||||
|
||||
// SetHorizontalSectionId sets the horizontalSectionId property value. Indicates the horizontal section where the web part is located.
|
||||
func (m *WebPartPosition) SetHorizontalSectionId(value *float64)() {
|
||||
func (m *WebPartPosition) SetHorizontalSectionId(value *float64) {
|
||||
m.horizontalSectionId = value
|
||||
}
|
||||
|
||||
// SetIsInVerticalSection sets the isInVerticalSection property value. Indicates whether the web part is located in the vertical section.
|
||||
func (m *WebPartPosition) SetIsInVerticalSection(value *bool)() {
|
||||
func (m *WebPartPosition) SetIsInVerticalSection(value *bool) {
|
||||
m.isInVerticalSection = value
|
||||
}
|
||||
|
||||
// SetOdataType sets the @odata.type property value. The OdataType property
|
||||
func (m *WebPartPosition) SetOdataType(value *string)() {
|
||||
func (m *WebPartPosition) SetOdataType(value *string) {
|
||||
m.odataType = value
|
||||
}
|
||||
|
||||
// SetWebPartIndex sets the webPartIndex property value. Index of the current web part. Represents the order of the web part in this column or section.
|
||||
func (m *WebPartPosition) SetWebPartIndex(value *float64)() {
|
||||
func (m *WebPartPosition) SetWebPartIndex(value *float64) {
|
||||
m.webPartIndex = value
|
||||
}
|
||||
|
||||
@ -8,14 +8,14 @@ import (
|
||||
type WebPartPositionable interface {
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder
|
||||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
||||
GetColumnId()(*float64)
|
||||
GetHorizontalSectionId()(*float64)
|
||||
GetIsInVerticalSection()(*bool)
|
||||
GetOdataType()(*string)
|
||||
GetWebPartIndex()(*float64)
|
||||
SetColumnId(value *float64)()
|
||||
SetHorizontalSectionId(value *float64)()
|
||||
SetIsInVerticalSection(value *bool)()
|
||||
SetOdataType(value *string)()
|
||||
SetWebPartIndex(value *float64)()
|
||||
GetColumnId() *float64
|
||||
GetHorizontalSectionId() *float64
|
||||
GetIsInVerticalSection() *bool
|
||||
GetOdataType() *string
|
||||
GetWebPartIndex() *float64
|
||||
SetColumnId(value *float64)
|
||||
SetHorizontalSectionId(value *float64)
|
||||
SetIsInVerticalSection(value *bool)
|
||||
SetOdataType(value *string)
|
||||
SetWebPartIndex(value *float64)
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user