Package com.microsoft.graph.models
Class MobileApp
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.MobileApp
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
AndroidStoreApp
,IosStoreApp
,IosVppApp
,MacOSMicrosoftEdgeApp
,MacOSOfficeSuiteApp
,ManagedApp
,MicrosoftStoreForBusinessApp
,MobileLobApp
,WebApp
The class for the Mobile App.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Assignments.The Categories.The Created Date Time.The Description.The Developer.The Display Name.The Information Url.The Is Featured.The Large Icon.The Last Modified Date Time.The Notes.The Owner.The Privacy Information Url.The Publisher.The Publishing State. -
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
-
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The date and time the app was created. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. The description of the app. -
developer
The Developer. The developer of the app. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The admin provided or imported title of the app. -
informationUrl
@SerializedName(value="informationUrl", alternate="InformationUrl") @Expose @Nullable public String informationUrlThe Information Url. The more information Url. -
isFeatured
@SerializedName(value="isFeatured", alternate="IsFeatured") @Expose @Nullable public Boolean isFeaturedThe Is Featured. The value indicating whether the app is marked as featured by the admin. -
largeIcon
@SerializedName(value="largeIcon", alternate="LargeIcon") @Expose @Nullable public MimeContent largeIconThe Large Icon. The large icon, to be displayed in the app details and used for upload of the icon. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. The date and time the app was last modified. -
notes
The Notes. Notes for the app. -
owner
The Owner. The owner of the app. -
privacyInformationUrl
@SerializedName(value="privacyInformationUrl", alternate="PrivacyInformationUrl") @Expose @Nullable public String privacyInformationUrlThe Privacy Information Url. The privacy statement Url. -
publisher
The Publisher. The publisher of the app. -
publishingState
@SerializedName(value="publishingState", alternate="PublishingState") @Expose @Nullable public MobileAppPublishingState publishingStateThe Publishing State. The publishing state for the app. The app cannot be assigned unless the app is published. Possible values are: notPublished, processing, published. -
assignments
@SerializedName(value="assignments", alternate="Assignments") @Expose @Nullable public MobileAppAssignmentCollectionPage assignmentsThe Assignments. The list of group assignments for this mobile app. -
categories
The Categories. The list of categories for this app.
-
-
Constructor Details
-
MobileApp
public MobileApp()
-
-
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 classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-