Package com.microsoft.graph.models
Class MacOSLobApp
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.MobileApp
com.microsoft.graph.models.MobileLobApp
com.microsoft.graph.models.MacOSLobApp
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class MacOSLobApp
extends MobileLobApp
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Mac OSLob App.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Build Number.The Bundle Id.The Child Apps.The Ignore Version Detection.The Install As Managed.The Md5Hash.The Md5Hash Chunk Size.The Minimum Supported Operating System.The Version Number.Fields inherited from class com.microsoft.graph.models.MobileLobApp
committedContentVersion, contentVersions, fileName, size
Fields inherited from class com.microsoft.graph.models.MobileApp
assignments, categories, createdDateTime, description, developer, displayName, informationUrl, isFeatured, largeIcon, lastModifiedDateTime, notes, owner, privacyInformationUrl, publisher, publishingState
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
buildNumber
@SerializedName(value="buildNumber", alternate="BuildNumber") @Expose @Nullable public String buildNumberThe Build Number. The build number of the package. This should match the package CFBundleShortVersionString of the .pkg file. -
bundleId
The Bundle Id. The primary bundleId of the package. -
childApps
@SerializedName(value="childApps", alternate="ChildApps") @Expose @Nullable public List<MacOSLobChildApp> childAppsThe Child Apps. List of ComplexType macOSLobChildApp objects. Represents the apps expected to be installed by the package. -
ignoreVersionDetection
@SerializedName(value="ignoreVersionDetection", alternate="IgnoreVersionDetection") @Expose @Nullable public Boolean ignoreVersionDetectionThe Ignore Version Detection. When TRUE, indicates that the app's version will NOT be used to detect if the app is installed on a device. When FALSE, indicates that the app's version will be used to detect if the app is installed on a device. Set this to true for apps that use a self update feature. -
installAsManaged
@SerializedName(value="installAsManaged", alternate="InstallAsManaged") @Expose @Nullable public Boolean installAsManagedThe Install As Managed. When TRUE, indicates that the app will be installed as managed (requires macOS 11.0 and other managed package restrictions). When FALSE, indicates that the app will be installed as unmanaged. -
md5Hash
The Md5Hash. The MD5 hash codes. This is empty if the package was uploaded directly. If the Intune App Wrapping Tool is used to create a .intunemac, this value can be found inside the Detection.xml file. -
md5HashChunkSize
@SerializedName(value="md5HashChunkSize", alternate="Md5HashChunkSize") @Expose @Nullable public Integer md5HashChunkSizeThe Md5Hash Chunk Size. The chunk size for MD5 hash. This is '0' or empty if the package was uploaded directly. If the Intune App Wrapping Tool is used to create a .intunemac, this value can be found inside the Detection.xml file. -
minimumSupportedOperatingSystem
@SerializedName(value="minimumSupportedOperatingSystem", alternate="MinimumSupportedOperatingSystem") @Expose @Nullable public MacOSMinimumOperatingSystem minimumSupportedOperatingSystemThe Minimum Supported Operating System. ComplexType macOSMinimumOperatingSystem that indicates the minimum operating system applicable for the application. -
versionNumber
@SerializedName(value="versionNumber", alternate="VersionNumber") @Expose @Nullable public String versionNumberThe Version Number. The version number of the package. This should match the package CFBundleVersion in the packageinfo file.
-
-
Constructor Details
-
MacOSLobApp
public MacOSLobApp()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classMobileLobApp
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-