Package com.microsoft.graph.models
Class DataPolicyOperation
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.DataPolicyOperation
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class DataPolicyOperation
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Data Policy Operation.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Completed Date Time.The Progress.The Status.The Storage Location.The Submitted Date Time.The User Id. -
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
-
completedDateTime
@SerializedName(value="completedDateTime", alternate="CompletedDateTime") @Expose @Nullable public OffsetDateTime completedDateTimeThe Completed Date Time. Represents when the request for this data policy operation was completed, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Null until the operation completes. -
progress
The Progress. Specifies the progress of an operation. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public DataPolicyOperationStatus statusThe Status. Possible values are: notStarted, running, complete, failed, unknownFutureValue. -
storageLocation
@SerializedName(value="storageLocation", alternate="StorageLocation") @Expose @Nullable public String storageLocationThe Storage Location. The URL location to where data is being exported for export requests. -
submittedDateTime
@SerializedName(value="submittedDateTime", alternate="SubmittedDateTime") @Expose @Nullable public OffsetDateTime submittedDateTimeThe Submitted Date Time. Represents when the request for this data operation was submitted, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z -
userId
The User Id. The id for the user on whom the operation is performed.
-
-
Constructor Details
-
DataPolicyOperation
public DataPolicyOperation()
-
-
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
-