Package com.microsoft.graph.models
Class SynchronizationJob
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.SynchronizationJob
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class SynchronizationJob
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Synchronization Job.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Schedule.The Schema.The Status.The Synchronization Job Settings.The Template 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
-
schedule
@SerializedName(value="schedule", alternate="Schedule") @Expose @Nullable public SynchronizationSchedule scheduleThe Schedule. Schedule used to run the job. Read-only. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public SynchronizationStatus statusThe Status. Status of the job, which includes when the job was last run, current job state, and errors. -
synchronizationJobSettings
@SerializedName(value="synchronizationJobSettings", alternate="SynchronizationJobSettings") @Expose @Nullable public List<KeyValuePair> synchronizationJobSettingsThe Synchronization Job Settings. Settings associated with the job. Some settings are inherited from the template. -
templateId
@SerializedName(value="templateId", alternate="TemplateId") @Expose @Nullable public String templateIdThe Template Id. Identifier of the synchronization template this job is based on. -
schema
@SerializedName(value="schema", alternate="Schema") @Expose @Nullable public SynchronizationSchema schemaThe Schema. The synchronization schema configured for the job.
-
-
Constructor Details
-
SynchronizationJob
public SynchronizationJob()
-
-
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
-