Class CaseOperation
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.security.models.CaseOperation
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
EdiscoveryAddToReviewSetOperation,EdiscoveryEstimateOperation,EdiscoveryHoldOperation,EdiscoveryIndexOperation,EdiscoveryPurgeDataOperation,EdiscoveryTagOperation
public class CaseOperation
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Case Operation.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Action.The Completed Date Time.The Created By.The Created Date Time.The Percent Progress.The Result Info.The Status. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
action
The Action. The type of action the operation represents. Possible values are: addToReviewSet,applyTags,contentExport,convertToPdf,estimateStatistics, purgeData -
completedDateTime
@SerializedName(value="completedDateTime", alternate="CompletedDateTime") @Expose @Nullable public OffsetDateTime completedDateTimeThe Completed Date Time. The date and time the operation was completed. -
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public IdentitySet createdByThe Created By. The user that created the operation. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The date and time the operation was created. -
percentProgress
@SerializedName(value="percentProgress", alternate="PercentProgress") @Expose @Nullable public Integer percentProgressThe Percent Progress. The progress of the operation. -
resultInfo
@SerializedName(value="resultInfo", alternate="ResultInfo") @Expose @Nullable public ResultInfo resultInfoThe Result Info. Contains success and failure-specific result information. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public CaseOperationStatus statusThe Status. The status of the case operation. Possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed.
-
-
Constructor Details
-
CaseOperation
public CaseOperation()
-
-
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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-