Package com.microsoft.graph.models
Class SynchronizationTaskExecution
java.lang.Object
com.microsoft.graph.models.SynchronizationTaskExecution
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class SynchronizationTaskExecution
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Synchronization Task Execution.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Activity Identifier.The Count Entitled.The Count Entitled For Provisioning.The Count Escrowed.The Count Escrowed Raw.The Count Exported.The Count Exports.The Count Imported.The Count Imported Deltas.The Count Imported Reference Deltas.The Error.the OData type of the object as returned by the serviceThe State.The Time Began.The Time Ended. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(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 -
activityIdentifier
@SerializedName(value="activityIdentifier", alternate="ActivityIdentifier") @Expose @Nullable public String activityIdentifierThe Activity Identifier. Identifier of the job run. -
countEntitled
@SerializedName(value="countEntitled", alternate="CountEntitled") @Expose @Nullable public Long countEntitledThe Count Entitled. Count of processed entries that were assigned for this application. -
countEntitledForProvisioning
@SerializedName(value="countEntitledForProvisioning", alternate="CountEntitledForProvisioning") @Expose @Nullable public Long countEntitledForProvisioningThe Count Entitled For Provisioning. Count of processed entries that were assigned for provisioning. -
countEscrowed
@SerializedName(value="countEscrowed", alternate="CountEscrowed") @Expose @Nullable public Long countEscrowedThe Count Escrowed. Count of entries that were escrowed (errors). -
countEscrowedRaw
@SerializedName(value="countEscrowedRaw", alternate="CountEscrowedRaw") @Expose @Nullable public Long countEscrowedRawThe Count Escrowed Raw. Count of entries that were escrowed, including system-generated escrows. -
countExported
@SerializedName(value="countExported", alternate="CountExported") @Expose @Nullable public Long countExportedThe Count Exported. Count of exported entries. -
countExports
@SerializedName(value="countExports", alternate="CountExports") @Expose @Nullable public Long countExportsThe Count Exports. Count of entries that were expected to be exported. -
countImported
@SerializedName(value="countImported", alternate="CountImported") @Expose @Nullable public Long countImportedThe Count Imported. Count of imported entries. -
countImportedDeltas
@SerializedName(value="countImportedDeltas", alternate="CountImportedDeltas") @Expose @Nullable public Long countImportedDeltasThe Count Imported Deltas. Count of imported delta-changes. -
countImportedReferenceDeltas
@SerializedName(value="countImportedReferenceDeltas", alternate="CountImportedReferenceDeltas") @Expose @Nullable public Long countImportedReferenceDeltasThe Count Imported Reference Deltas. Count of imported delta-changes pertaining to reference changes. -
error
@SerializedName(value="error", alternate="Error") @Expose @Nullable public SynchronizationError errorThe Error. If an error was encountered, contains a synchronizationError object with details. -
state
@SerializedName(value="state", alternate="State") @Expose @Nullable public SynchronizationTaskExecutionResult stateThe State. Code summarizing the result of this run. Possible values are: Succeeded, Failed, EntryLevelErrors. -
timeBegan
@SerializedName(value="timeBegan", alternate="TimeBegan") @Expose @Nullable public OffsetDateTime timeBeganThe Time Began. Time when this job run began. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -
timeEnded
@SerializedName(value="timeEnded", alternate="TimeEnded") @Expose @Nullable public OffsetDateTime timeEndedThe Time Ended. Time when this job run ended. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
-
-
Constructor Details
-
SynchronizationTaskExecution
public SynchronizationTaskExecution()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin 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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-