Package com.microsoft.graph.models
Class DeviceActionResult
java.lang.Object
com.microsoft.graph.models.DeviceActionResult
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
DeleteUserFromSharedAppleDeviceActionResult
,LocateDeviceActionResult
,RemoteLockActionResult
,ResetPasscodeActionResult
,WindowsDefenderScanActionResult
public class DeviceActionResult
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Device Action Result.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Action Name.The Action State.The Last Updated Date Time.the OData type of the object as returned by the serviceThe Start Date Time. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManager
void
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
actionName
@SerializedName(value="actionName", alternate="ActionName") @Expose @Nullable public String actionNameThe Action Name. Action name -
actionState
@SerializedName(value="actionState", alternate="ActionState") @Expose @Nullable public ActionState actionStateThe Action State. State of the action. Possible values are: none, pending, canceled, active, done, failed, notSupported. -
lastUpdatedDateTime
@SerializedName(value="lastUpdatedDateTime", alternate="LastUpdatedDateTime") @Expose @Nullable public OffsetDateTime lastUpdatedDateTimeThe Last Updated Date Time. Time the action state was last updated -
startDateTime
@SerializedName(value="startDateTime", alternate="StartDateTime") @Expose @Nullable public OffsetDateTime startDateTimeThe Start Date Time. Time the action was initiated
-
-
Constructor Details
-
DeviceActionResult
public DeviceActionResult()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManager
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
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
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-