/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/microsoftgraph/msgraph-sdk-go/models/security/article.go
395 строк
14 KB
Justin Pierce
Add compat_otp package with openshift-tests-private (OTP) util implementations
11 авг 2025, 18:00
11 авг 2025, 18:00
80ac5c1
Код
Авторство
О чём код?
// Code generated by Microsoft Kiota - DO NOT EDIT. // Changes may cause incorrect behavior and will be lost if the code is regenerated. package security import ( i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e "time" i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization" iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242 "github.com/microsoftgraph/msgraph-sdk-go/models" ) type Article struct { iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Entity } // NewArticle instantiates a new Article and sets the default values. func NewArticle()(*Article) { m := &Article{ Entity: *iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.NewEntity(), } return m } // CreateArticleFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value // returns a Parsable when successful func CreateArticleFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) { return NewArticle(), nil } // GetBody gets the body property value. The body property // returns a FormattedContentable when successful func (m *Article) GetBody()(FormattedContentable) { val, err := m.GetBackingStore().Get("body") if err != nil { panic(err) } if val != nil { return val.(FormattedContentable) } return nil } // GetCreatedDateTime gets the createdDateTime property value. The date and time when this article was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. // returns a *Time when successful func (m *Article) GetCreatedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) { val, err := m.GetBackingStore().Get("createdDateTime") if err != nil { panic(err) } if val != nil { return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) } return nil } // GetFieldDeserializers the deserialization information for the current model // returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful func (m *Article) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) { res := m.Entity.GetFieldDeserializers() res["body"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetObjectValue(CreateFormattedContentFromDiscriminatorValue) if err != nil { return err } if val != nil { m.SetBody(val.(FormattedContentable)) } return nil } res["createdDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetTimeValue() if err != nil { return err } if val != nil { m.SetCreatedDateTime(val) } return nil } res["imageUrl"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetImageUrl(val) } return nil } res["indicators"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateArticleIndicatorFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]ArticleIndicatorable, len(val)) for i, v := range val { if v != nil { res[i] = v.(ArticleIndicatorable) } } m.SetIndicators(res) } return nil } res["isFeatured"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetBoolValue() if err != nil { return err } if val != nil { m.SetIsFeatured(val) } return nil } res["lastUpdatedDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetTimeValue() if err != nil { return err } if val != nil { m.SetLastUpdatedDateTime(val) } return nil } res["summary"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetObjectValue(CreateFormattedContentFromDiscriminatorValue) if err != nil { return err } if val != nil { m.SetSummary(val.(FormattedContentable)) } return nil } res["tags"] = 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 { if v != nil { res[i] = *(v.(*string)) } } m.SetTags(res) } return nil } res["title"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetTitle(val) } return nil } return res } // GetImageUrl gets the imageUrl property value. URL of the header image for this article, used for display purposes. // returns a *string when successful func (m *Article) GetImageUrl()(*string) { val, err := m.GetBackingStore().Get("imageUrl") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetIndicators gets the indicators property value. Indicators related to this article. // returns a []ArticleIndicatorable when successful func (m *Article) GetIndicators()([]ArticleIndicatorable) { val, err := m.GetBackingStore().Get("indicators") if err != nil { panic(err) } if val != nil { return val.([]ArticleIndicatorable) } return nil } // GetIsFeatured gets the isFeatured property value. Indicates whether this article is currently featured by Microsoft. // returns a *bool when successful func (m *Article) GetIsFeatured()(*bool) { val, err := m.GetBackingStore().Get("isFeatured") if err != nil { panic(err) } if val != nil { return val.(*bool) } return nil } // GetLastUpdatedDateTime gets the lastUpdatedDateTime property value. The most recent date and time when this article was updated. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. // returns a *Time when successful func (m *Article) GetLastUpdatedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) { val, err := m.GetBackingStore().Get("lastUpdatedDateTime") if err != nil { panic(err) } if val != nil { return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) } return nil } // GetSummary gets the summary property value. The summary property // returns a FormattedContentable when successful func (m *Article) GetSummary()(FormattedContentable) { val, err := m.GetBackingStore().Get("summary") if err != nil { panic(err) } if val != nil { return val.(FormattedContentable) } return nil } // GetTags gets the tags property value. Tags for this article, communicating keywords, or key concepts. // returns a []string when successful func (m *Article) GetTags()([]string) { val, err := m.GetBackingStore().Get("tags") if err != nil { panic(err) } if val != nil { return val.([]string) } return nil } // GetTitle gets the title property value. The title of this article. // returns a *string when successful func (m *Article) GetTitle()(*string) { val, err := m.GetBackingStore().Get("title") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // Serialize serializes information the current object func (m *Article) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { err := m.Entity.Serialize(writer) if err != nil { return err } { err = writer.WriteObjectValue("body", m.GetBody()) if err != nil { return err } } { err = writer.WriteTimeValue("createdDateTime", m.GetCreatedDateTime()) if err != nil { return err } } { err = writer.WriteStringValue("imageUrl", m.GetImageUrl()) if err != nil { return err } } if m.GetIndicators() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetIndicators())) for i, v := range m.GetIndicators() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("indicators", cast) if err != nil { return err } } { err = writer.WriteBoolValue("isFeatured", m.GetIsFeatured()) if err != nil { return err } } { err = writer.WriteTimeValue("lastUpdatedDateTime", m.GetLastUpdatedDateTime()) if err != nil { return err } } { err = writer.WriteObjectValue("summary", m.GetSummary()) if err != nil { return err } } if m.GetTags() != nil { err = writer.WriteCollectionOfStringValues("tags", m.GetTags()) if err != nil { return err } } { err = writer.WriteStringValue("title", m.GetTitle()) if err != nil { return err } } return nil } // SetBody sets the body property value. The body property func (m *Article) SetBody(value FormattedContentable)() { err := m.GetBackingStore().Set("body", value) if err != nil { panic(err) } } // SetCreatedDateTime sets the createdDateTime property value. The date and time when this article was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. func (m *Article) SetCreatedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() { err := m.GetBackingStore().Set("createdDateTime", value) if err != nil { panic(err) } } // SetImageUrl sets the imageUrl property value. URL of the header image for this article, used for display purposes. func (m *Article) SetImageUrl(value *string)() { err := m.GetBackingStore().Set("imageUrl", value) if err != nil { panic(err) } } // SetIndicators sets the indicators property value. Indicators related to this article. func (m *Article) SetIndicators(value []ArticleIndicatorable)() { err := m.GetBackingStore().Set("indicators", value) if err != nil { panic(err) } } // SetIsFeatured sets the isFeatured property value. Indicates whether this article is currently featured by Microsoft. func (m *Article) SetIsFeatured(value *bool)() { err := m.GetBackingStore().Set("isFeatured", value) if err != nil { panic(err) } } // SetLastUpdatedDateTime sets the lastUpdatedDateTime property value. The most recent date and time when this article was updated. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. func (m *Article) SetLastUpdatedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() { err := m.GetBackingStore().Set("lastUpdatedDateTime", value) if err != nil { panic(err) } } // SetSummary sets the summary property value. The summary property func (m *Article) SetSummary(value FormattedContentable)() { err := m.GetBackingStore().Set("summary", value) if err != nil { panic(err) } } // SetTags sets the tags property value. Tags for this article, communicating keywords, or key concepts. func (m *Article) SetTags(value []string)() { err := m.GetBackingStore().Set("tags", value) if err != nil { panic(err) } } // SetTitle sets the title property value. The title of this article. func (m *Article) SetTitle(value *string)() { err := m.GetBackingStore().Set("title", value) if err != nil { panic(err) } } type Articleable interface { iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Entityable i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable GetBody()(FormattedContentable) GetCreatedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) GetImageUrl()(*string) GetIndicators()([]ArticleIndicatorable) GetIsFeatured()(*bool) GetLastUpdatedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) GetSummary()(FormattedContentable) GetTags()([]string) GetTitle()(*string) SetBody(value FormattedContentable)() SetCreatedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() SetImageUrl(value *string)() SetIndicators(value []ArticleIndicatorable)() SetIsFeatured(value *bool)() SetLastUpdatedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() SetSummary(value FormattedContentable)() SetTags(value []string)() SetTitle(value *string)() }