Package com.microsoft.graph.models
Class EBookInstallSummary
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.EBookInstallSummary
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class EBookInstallSummary
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the EBook Install Summary.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Failed Device Count.The Failed User Count.The Installed Device Count.The Installed User Count.The Not Installed Device Count.The Not Installed User Count. -
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
-
failedDeviceCount
@SerializedName(value="failedDeviceCount", alternate="FailedDeviceCount") @Expose @Nullable public Integer failedDeviceCountThe Failed Device Count. Number of Devices that have failed to install this book. -
failedUserCount
@SerializedName(value="failedUserCount", alternate="FailedUserCount") @Expose @Nullable public Integer failedUserCountThe Failed User Count. Number of Users that have 1 or more device that failed to install this book. -
installedDeviceCount
@SerializedName(value="installedDeviceCount", alternate="InstalledDeviceCount") @Expose @Nullable public Integer installedDeviceCountThe Installed Device Count. Number of Devices that have successfully installed this book. -
installedUserCount
@SerializedName(value="installedUserCount", alternate="InstalledUserCount") @Expose @Nullable public Integer installedUserCountThe Installed User Count. Number of Users whose devices have all succeeded to install this book. -
notInstalledDeviceCount
@SerializedName(value="notInstalledDeviceCount", alternate="NotInstalledDeviceCount") @Expose @Nullable public Integer notInstalledDeviceCountThe Not Installed Device Count. Number of Devices that does not have this book installed. -
notInstalledUserCount
@SerializedName(value="notInstalledUserCount", alternate="NotInstalledUserCount") @Expose @Nullable public Integer notInstalledUserCountThe Not Installed User Count. Number of Users that did not install this book.
-
-
Constructor Details
-
EBookInstallSummary
public EBookInstallSummary()
-
-
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
-