/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/microsoftgraph/msgraph-sdk-go/models/mobile_app.go
680 строк
24 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 ( i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e "time" i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization" ) // MobileApp an abstract class containing the base properties for Intune mobile apps. Note: Listing mobile apps with `$expand=assignments` has been deprecated. Instead get the list of apps without the `$expand` query on `assignments`. Then, perform the expansion on individual applications. type MobileApp struct { Entity } // NewMobileApp instantiates a new MobileApp and sets the default values. func NewMobileApp()(*MobileApp) { m := &MobileApp{ Entity: *NewEntity(), } return m } // CreateMobileAppFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value // returns a Parsable when successful func CreateMobileAppFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) { if parseNode != nil { mappingValueNode, err := parseNode.GetChildNode("@odata.type") if err != nil { return nil, err } if mappingValueNode != nil { mappingValue, err := mappingValueNode.GetStringValue() if err != nil { return nil, err } if mappingValue != nil { switch *mappingValue { case "#microsoft.graph.androidLobApp": return NewAndroidLobApp(), nil case "#microsoft.graph.androidStoreApp": return NewAndroidStoreApp(), nil case "#microsoft.graph.iosiPadOSWebClip": return NewIosiPadOSWebClip(), nil case "#microsoft.graph.iosLobApp": return NewIosLobApp(), nil case "#microsoft.graph.iosStoreApp": return NewIosStoreApp(), nil case "#microsoft.graph.iosVppApp": return NewIosVppApp(), nil case "#microsoft.graph.macOSDmgApp": return NewMacOSDmgApp(), nil case "#microsoft.graph.macOSLobApp": return NewMacOSLobApp(), nil case "#microsoft.graph.macOSMicrosoftDefenderApp": return NewMacOSMicrosoftDefenderApp(), nil case "#microsoft.graph.macOSMicrosoftEdgeApp": return NewMacOSMicrosoftEdgeApp(), nil case "#microsoft.graph.macOSOfficeSuiteApp": return NewMacOSOfficeSuiteApp(), nil case "#microsoft.graph.managedAndroidLobApp": return NewManagedAndroidLobApp(), nil case "#microsoft.graph.managedAndroidStoreApp": return NewManagedAndroidStoreApp(), nil case "#microsoft.graph.managedApp": return NewManagedApp(), nil case "#microsoft.graph.managedIOSLobApp": return NewManagedIOSLobApp(), nil case "#microsoft.graph.managedIOSStoreApp": return NewManagedIOSStoreApp(), nil case "#microsoft.graph.managedMobileLobApp": return NewManagedMobileLobApp(), nil case "#microsoft.graph.microsoftStoreForBusinessApp": return NewMicrosoftStoreForBusinessApp(), nil case "#microsoft.graph.mobileLobApp": return NewMobileLobApp(), nil case "#microsoft.graph.webApp": return NewWebApp(), nil case "#microsoft.graph.win32LobApp": return NewWin32LobApp(), nil case "#microsoft.graph.windowsAppX": return NewWindowsAppX(), nil case "#microsoft.graph.windowsMicrosoftEdgeApp": return NewWindowsMicrosoftEdgeApp(), nil case "#microsoft.graph.windowsMobileMSI": return NewWindowsMobileMSI(), nil case "#microsoft.graph.windowsUniversalAppX": return NewWindowsUniversalAppX(), nil case "#microsoft.graph.windowsWebApp": return NewWindowsWebApp(), nil } } } } return NewMobileApp(), nil } // GetAssignments gets the assignments property value. The list of group assignments for this mobile app. // returns a []MobileAppAssignmentable when successful func (m *MobileApp) GetAssignments()([]MobileAppAssignmentable) { val, err := m.GetBackingStore().Get("assignments") if err != nil { panic(err) } if val != nil { return val.([]MobileAppAssignmentable) } return nil } // GetCategories gets the categories property value. The list of categories for this app. // returns a []MobileAppCategoryable when successful func (m *MobileApp) GetCategories()([]MobileAppCategoryable) { val, err := m.GetBackingStore().Get("categories") if err != nil { panic(err) } if val != nil { return val.([]MobileAppCategoryable) } return nil } // GetCreatedDateTime gets the createdDateTime property value. The date and time the app was created. // returns a *Time when successful func (m *MobileApp) GetCreatedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) { val, err := m.GetBackingStore().Get("createdDateTime") if err != nil { panic(err) } if val != nil { return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) } return nil } // GetDescription gets the description property value. The description of the app. // returns a *string when successful func (m *MobileApp) GetDescription()(*string) { val, err := m.GetBackingStore().Get("description") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetDeveloper gets the developer property value. The developer of the app. // returns a *string when successful func (m *MobileApp) GetDeveloper()(*string) { val, err := m.GetBackingStore().Get("developer") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetDisplayName gets the displayName property value. The admin provided or imported title of the app. // returns a *string when successful func (m *MobileApp) GetDisplayName()(*string) { val, err := m.GetBackingStore().Get("displayName") 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 *MobileApp) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) { res := m.Entity.GetFieldDeserializers() res["assignments"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateMobileAppAssignmentFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]MobileAppAssignmentable, len(val)) for i, v := range val { if v != nil { res[i] = v.(MobileAppAssignmentable) } } m.SetAssignments(res) } return nil } res["categories"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateMobileAppCategoryFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]MobileAppCategoryable, len(val)) for i, v := range val { if v != nil { res[i] = v.(MobileAppCategoryable) } } m.SetCategories(res) } 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["description"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetDescription(val) } return nil } res["developer"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetDeveloper(val) } return nil } res["displayName"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetDisplayName(val) } return nil } res["informationUrl"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetInformationUrl(val) } 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["largeIcon"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetObjectValue(CreateMimeContentFromDiscriminatorValue) if err != nil { return err } if val != nil { m.SetLargeIcon(val.(MimeContentable)) } return nil } res["lastModifiedDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetTimeValue() if err != nil { return err } if val != nil { m.SetLastModifiedDateTime(val) } return nil } res["notes"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetNotes(val) } return nil } res["owner"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetOwner(val) } return nil } res["privacyInformationUrl"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetPrivacyInformationUrl(val) } return nil } res["publisher"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetPublisher(val) } return nil } res["publishingState"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetEnumValue(ParseMobileAppPublishingState) if err != nil { return err } if val != nil { m.SetPublishingState(val.(*MobileAppPublishingState)) } return nil } return res } // GetInformationUrl gets the informationUrl property value. The more information Url. // returns a *string when successful func (m *MobileApp) GetInformationUrl()(*string) { val, err := m.GetBackingStore().Get("informationUrl") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetIsFeatured gets the isFeatured property value. The value indicating whether the app is marked as featured by the admin. // returns a *bool when successful func (m *MobileApp) GetIsFeatured()(*bool) { val, err := m.GetBackingStore().Get("isFeatured") if err != nil { panic(err) } if val != nil { return val.(*bool) } return nil } // GetLargeIcon gets the largeIcon property value. The large icon, to be displayed in the app details and used for upload of the icon. // returns a MimeContentable when successful func (m *MobileApp) GetLargeIcon()(MimeContentable) { val, err := m.GetBackingStore().Get("largeIcon") if err != nil { panic(err) } if val != nil { return val.(MimeContentable) } return nil } // GetLastModifiedDateTime gets the lastModifiedDateTime property value. The date and time the app was last modified. // returns a *Time when successful func (m *MobileApp) GetLastModifiedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) { val, err := m.GetBackingStore().Get("lastModifiedDateTime") if err != nil { panic(err) } if val != nil { return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) } return nil } // GetNotes gets the notes property value. Notes for the app. // returns a *string when successful func (m *MobileApp) GetNotes()(*string) { val, err := m.GetBackingStore().Get("notes") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetOwner gets the owner property value. The owner of the app. // returns a *string when successful func (m *MobileApp) GetOwner()(*string) { val, err := m.GetBackingStore().Get("owner") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetPrivacyInformationUrl gets the privacyInformationUrl property value. The privacy statement Url. // returns a *string when successful func (m *MobileApp) GetPrivacyInformationUrl()(*string) { val, err := m.GetBackingStore().Get("privacyInformationUrl") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetPublisher gets the publisher property value. The publisher of the app. // returns a *string when successful func (m *MobileApp) GetPublisher()(*string) { val, err := m.GetBackingStore().Get("publisher") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetPublishingState gets the publishingState property value. Indicates the publishing state of an app. // returns a *MobileAppPublishingState when successful func (m *MobileApp) GetPublishingState()(*MobileAppPublishingState) { val, err := m.GetBackingStore().Get("publishingState") if err != nil { panic(err) } if val != nil { return val.(*MobileAppPublishingState) } return nil } // Serialize serializes information the current object func (m *MobileApp) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { err := m.Entity.Serialize(writer) if err != nil { return err } if m.GetAssignments() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetAssignments())) for i, v := range m.GetAssignments() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("assignments", cast) if err != nil { return err } } if m.GetCategories() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetCategories())) for i, v := range m.GetCategories() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("categories", cast) if err != nil { return err } } { err = writer.WriteStringValue("description", m.GetDescription()) if err != nil { return err } } { err = writer.WriteStringValue("developer", m.GetDeveloper()) if err != nil { return err } } { err = writer.WriteStringValue("displayName", m.GetDisplayName()) if err != nil { return err } } { err = writer.WriteStringValue("informationUrl", m.GetInformationUrl()) if err != nil { return err } } { err = writer.WriteBoolValue("isFeatured", m.GetIsFeatured()) if err != nil { return err } } { err = writer.WriteObjectValue("largeIcon", m.GetLargeIcon()) if err != nil { return err } } { err = writer.WriteStringValue("notes", m.GetNotes()) if err != nil { return err } } { err = writer.WriteStringValue("owner", m.GetOwner()) if err != nil { return err } } { err = writer.WriteStringValue("privacyInformationUrl", m.GetPrivacyInformationUrl()) if err != nil { return err } } { err = writer.WriteStringValue("publisher", m.GetPublisher()) if err != nil { return err } } if m.GetPublishingState() != nil { cast := (*m.GetPublishingState()).String() err = writer.WriteStringValue("publishingState", &cast) if err != nil { return err } } return nil } // SetAssignments sets the assignments property value. The list of group assignments for this mobile app. func (m *MobileApp) SetAssignments(value []MobileAppAssignmentable)() { err := m.GetBackingStore().Set("assignments", value) if err != nil { panic(err) } } // SetCategories sets the categories property value. The list of categories for this app. func (m *MobileApp) SetCategories(value []MobileAppCategoryable)() { err := m.GetBackingStore().Set("categories", value) if err != nil { panic(err) } } // SetCreatedDateTime sets the createdDateTime property value. The date and time the app was created. func (m *MobileApp) SetCreatedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() { err := m.GetBackingStore().Set("createdDateTime", value) if err != nil { panic(err) } } // SetDescription sets the description property value. The description of the app. func (m *MobileApp) SetDescription(value *string)() { err := m.GetBackingStore().Set("description", value) if err != nil { panic(err) } } // SetDeveloper sets the developer property value. The developer of the app. func (m *MobileApp) SetDeveloper(value *string)() { err := m.GetBackingStore().Set("developer", value) if err != nil { panic(err) } } // SetDisplayName sets the displayName property value. The admin provided or imported title of the app. func (m *MobileApp) SetDisplayName(value *string)() { err := m.GetBackingStore().Set("displayName", value) if err != nil { panic(err) } } // SetInformationUrl sets the informationUrl property value. The more information Url. func (m *MobileApp) SetInformationUrl(value *string)() { err := m.GetBackingStore().Set("informationUrl", value) if err != nil { panic(err) } } // SetIsFeatured sets the isFeatured property value. The value indicating whether the app is marked as featured by the admin. func (m *MobileApp) SetIsFeatured(value *bool)() { err := m.GetBackingStore().Set("isFeatured", value) if err != nil { panic(err) } } // SetLargeIcon sets the largeIcon property value. The large icon, to be displayed in the app details and used for upload of the icon. func (m *MobileApp) SetLargeIcon(value MimeContentable)() { err := m.GetBackingStore().Set("largeIcon", value) if err != nil { panic(err) } } // SetLastModifiedDateTime sets the lastModifiedDateTime property value. The date and time the app was last modified. func (m *MobileApp) SetLastModifiedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() { err := m.GetBackingStore().Set("lastModifiedDateTime", value) if err != nil { panic(err) } } // SetNotes sets the notes property value. Notes for the app. func (m *MobileApp) SetNotes(value *string)() { err := m.GetBackingStore().Set("notes", value) if err != nil { panic(err) } } // SetOwner sets the owner property value. The owner of the app. func (m *MobileApp) SetOwner(value *string)() { err := m.GetBackingStore().Set("owner", value) if err != nil { panic(err) } } // SetPrivacyInformationUrl sets the privacyInformationUrl property value. The privacy statement Url. func (m *MobileApp) SetPrivacyInformationUrl(value *string)() { err := m.GetBackingStore().Set("privacyInformationUrl", value) if err != nil { panic(err) } } // SetPublisher sets the publisher property value. The publisher of the app. func (m *MobileApp) SetPublisher(value *string)() { err := m.GetBackingStore().Set("publisher", value) if err != nil { panic(err) } } // SetPublishingState sets the publishingState property value. Indicates the publishing state of an app. func (m *MobileApp) SetPublishingState(value *MobileAppPublishingState)() { err := m.GetBackingStore().Set("publishingState", value) if err != nil { panic(err) } } type MobileAppable interface { Entityable i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable GetAssignments()([]MobileAppAssignmentable) GetCategories()([]MobileAppCategoryable) GetCreatedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) GetDescription()(*string) GetDeveloper()(*string) GetDisplayName()(*string) GetInformationUrl()(*string) GetIsFeatured()(*bool) GetLargeIcon()(MimeContentable) GetLastModifiedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) GetNotes()(*string) GetOwner()(*string) GetPrivacyInformationUrl()(*string) GetPublisher()(*string) GetPublishingState()(*MobileAppPublishingState) SetAssignments(value []MobileAppAssignmentable)() SetCategories(value []MobileAppCategoryable)() SetCreatedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() SetDescription(value *string)() SetDeveloper(value *string)() SetDisplayName(value *string)() SetInformationUrl(value *string)() SetIsFeatured(value *bool)() SetLargeIcon(value MimeContentable)() SetLastModifiedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() SetNotes(value *string)() SetOwner(value *string)() SetPrivacyInformationUrl(value *string)() SetPublisher(value *string)() SetPublishingState(value *MobileAppPublishingState)() }