Package com.microsoft.graph.models
Class PrintJob
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.PrintJob
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Print Job.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Configuration.The Created By.The Created Date Time.The Documents.The Is Fetchable.The Redirected From.The Redirected To.The Status.The Tasks. -
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
-
configuration
@SerializedName(value="configuration", alternate="Configuration") @Expose @Nullable public PrintJobConfiguration configurationThe Configuration. A group of settings that a printer should use to print a job. -
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public UserIdentity createdByThe Created By. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The DateTimeOffset when the job was created. Read-only. -
isFetchable
@SerializedName(value="isFetchable", alternate="IsFetchable") @Expose @Nullable public Boolean isFetchableThe Is Fetchable. If true, document can be fetched by printer. -
redirectedFrom
@SerializedName(value="redirectedFrom", alternate="RedirectedFrom") @Expose @Nullable public String redirectedFromThe Redirected From. Contains the source job URL, if the job has been redirected from another printer. -
redirectedTo
@SerializedName(value="redirectedTo", alternate="RedirectedTo") @Expose @Nullable public String redirectedToThe Redirected To. Contains the destination job URL, if the job has been redirected to another printer. -
status
The Status. The status of the print job. Read-only. -
documents
@SerializedName(value="documents", alternate="Documents") @Expose @Nullable public PrintDocumentCollectionPage documentsThe Documents. -
tasks
@SerializedName(value="tasks", alternate="Tasks") @Expose @Nullable public PrintTaskCollectionPage tasksThe Tasks. A list of printTasks that were triggered by this print job.
-
-
Constructor Details
-
PrintJob
public PrintJob()
-
-
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
-