/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/microsoftgraph/msgraph-sdk-go/models/search_hit.go
375 строк
13 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 models import ( i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization" ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e "github.com/microsoft/kiota-abstractions-go/store" ) type SearchHit struct { // Stores model information. backingStore ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore } // NewSearchHit instantiates a new SearchHit and sets the default values. func NewSearchHit()(*SearchHit) { m := &SearchHit{ } m.backingStore = ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStoreFactoryInstance(); m.SetAdditionalData(make(map[string]any)) return m } // CreateSearchHitFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value // returns a Parsable when successful func CreateSearchHitFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) { return NewSearchHit(), 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. // returns a map[string]any when successful func (m *SearchHit) GetAdditionalData()(map[string]any) { val , err := m.backingStore.Get("additionalData") if err != nil { panic(err) } if val == nil { var value = make(map[string]any); m.SetAdditionalData(value); } return val.(map[string]any) } // GetBackingStore gets the BackingStore property value. Stores model information. // returns a BackingStore when successful func (m *SearchHit) GetBackingStore()(ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore) { return m.backingStore } // GetContentSource gets the contentSource property value. The name of the content source that the externalItem is part of. // returns a *string when successful func (m *SearchHit) GetContentSource()(*string) { val, err := m.GetBackingStore().Get("contentSource") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetFieldDeserializers the deserialization information for the current model // returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful func (m *SearchHit) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) { res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) res["contentSource"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetContentSource(val) } return nil } res["hitId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetHitId(val) } return nil } res["isCollapsed"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetBoolValue() if err != nil { return err } if val != nil { m.SetIsCollapsed(val) } return nil } res["@odata.type"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetOdataType(val) } return nil } res["rank"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetInt32Value() if err != nil { return err } if val != nil { m.SetRank(val) } return nil } res["resource"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetObjectValue(CreateEntityFromDiscriminatorValue) if err != nil { return err } if val != nil { m.SetResource(val.(Entityable)) } return nil } res["resultTemplateId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetResultTemplateId(val) } return nil } res["summary"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetSummary(val) } return nil } return res } // GetHitId gets the hitId property value. The internal identifier for the item. The format of the identifier varies based on the entity type. For details, see hitId format. // returns a *string when successful func (m *SearchHit) GetHitId()(*string) { val, err := m.GetBackingStore().Get("hitId") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetIsCollapsed gets the isCollapsed property value. Indicates whether the current result is collapsed when the collapseProperties property in the searchRequest is used. // returns a *bool when successful func (m *SearchHit) GetIsCollapsed()(*bool) { val, err := m.GetBackingStore().Get("isCollapsed") if err != nil { panic(err) } if val != nil { return val.(*bool) } return nil } // GetOdataType gets the @odata.type property value. The OdataType property // returns a *string when successful func (m *SearchHit) GetOdataType()(*string) { val, err := m.GetBackingStore().Get("odataType") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetRank gets the rank property value. The rank or the order of the result. // returns a *int32 when successful func (m *SearchHit) GetRank()(*int32) { val, err := m.GetBackingStore().Get("rank") if err != nil { panic(err) } if val != nil { return val.(*int32) } return nil } // GetResource gets the resource property value. The resource property // returns a Entityable when successful func (m *SearchHit) GetResource()(Entityable) { val, err := m.GetBackingStore().Get("resource") if err != nil { panic(err) } if val != nil { return val.(Entityable) } return nil } // GetResultTemplateId gets the resultTemplateId property value. ID of the result template used to render the search result. This ID must map to a display layout in the resultTemplates dictionary that is also included in the searchResponse. // returns a *string when successful func (m *SearchHit) GetResultTemplateId()(*string) { val, err := m.GetBackingStore().Get("resultTemplateId") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetSummary gets the summary property value. A summary of the result, if a summary is available. // returns a *string when successful func (m *SearchHit) GetSummary()(*string) { val, err := m.GetBackingStore().Get("summary") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // Serialize serializes information the current object func (m *SearchHit) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { { err := writer.WriteStringValue("contentSource", m.GetContentSource()) if err != nil { return err } } { err := writer.WriteStringValue("hitId", m.GetHitId()) if err != nil { return err } } { err := writer.WriteBoolValue("isCollapsed", m.GetIsCollapsed()) if err != nil { return err } } { err := writer.WriteStringValue("@odata.type", m.GetOdataType()) if err != nil { return err } } { err := writer.WriteInt32Value("rank", m.GetRank()) if err != nil { return err } } { err := writer.WriteObjectValue("resource", m.GetResource()) if err != nil { return err } } { err := writer.WriteStringValue("resultTemplateId", m.GetResultTemplateId()) if err != nil { return err } } { err := writer.WriteStringValue("summary", m.GetSummary()) if err != nil { return err } } { err := writer.WriteAdditionalData(m.GetAdditionalData()) if err != nil { return err } } 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 *SearchHit) SetAdditionalData(value map[string]any)() { err := m.GetBackingStore().Set("additionalData", value) if err != nil { panic(err) } } // SetBackingStore sets the BackingStore property value. Stores model information. func (m *SearchHit) SetBackingStore(value ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore)() { m.backingStore = value } // SetContentSource sets the contentSource property value. The name of the content source that the externalItem is part of. func (m *SearchHit) SetContentSource(value *string)() { err := m.GetBackingStore().Set("contentSource", value) if err != nil { panic(err) } } // SetHitId sets the hitId property value. The internal identifier for the item. The format of the identifier varies based on the entity type. For details, see hitId format. func (m *SearchHit) SetHitId(value *string)() { err := m.GetBackingStore().Set("hitId", value) if err != nil { panic(err) } } // SetIsCollapsed sets the isCollapsed property value. Indicates whether the current result is collapsed when the collapseProperties property in the searchRequest is used. func (m *SearchHit) SetIsCollapsed(value *bool)() { err := m.GetBackingStore().Set("isCollapsed", value) if err != nil { panic(err) } } // SetOdataType sets the @odata.type property value. The OdataType property func (m *SearchHit) SetOdataType(value *string)() { err := m.GetBackingStore().Set("odataType", value) if err != nil { panic(err) } } // SetRank sets the rank property value. The rank or the order of the result. func (m *SearchHit) SetRank(value *int32)() { err := m.GetBackingStore().Set("rank", value) if err != nil { panic(err) } } // SetResource sets the resource property value. The resource property func (m *SearchHit) SetResource(value Entityable)() { err := m.GetBackingStore().Set("resource", value) if err != nil { panic(err) } } // SetResultTemplateId sets the resultTemplateId property value. ID of the result template used to render the search result. This ID must map to a display layout in the resultTemplates dictionary that is also included in the searchResponse. func (m *SearchHit) SetResultTemplateId(value *string)() { err := m.GetBackingStore().Set("resultTemplateId", value) if err != nil { panic(err) } } // SetSummary sets the summary property value. A summary of the result, if a summary is available. func (m *SearchHit) SetSummary(value *string)() { err := m.GetBackingStore().Set("summary", value) if err != nil { panic(err) } } type SearchHitable interface { i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackedModel i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable GetBackingStore()(ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore) GetContentSource()(*string) GetHitId()(*string) GetIsCollapsed()(*bool) GetOdataType()(*string) GetRank()(*int32) GetResource()(Entityable) GetResultTemplateId()(*string) GetSummary()(*string) SetBackingStore(value ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore)() SetContentSource(value *string)() SetHitId(value *string)() SetIsCollapsed(value *bool)() SetOdataType(value *string)() SetRank(value *int32)() SetResource(value Entityable)() SetResultTemplateId(value *string)() SetSummary(value *string)() }