Package com.microsoft.graph.models
Class PrinterBase
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.PrinterBase
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
Printer,PrinterShare
The class for the Printer Base.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Capabilities.The Defaults.The Display Name.The Is Accepting Jobs.The Jobs.The Location.The Manufacturer.The Model.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
-
capabilities
@SerializedName(value="capabilities", alternate="Capabilities") @Expose @Nullable public PrinterCapabilities capabilitiesThe Capabilities. The capabilities of the printer/printerShare. -
defaults
@SerializedName(value="defaults", alternate="Defaults") @Expose @Nullable public PrinterDefaults defaultsThe Defaults. The default print settings of printer/printerShare. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The name of the printer/printerShare. -
isAcceptingJobs
@SerializedName(value="isAcceptingJobs", alternate="IsAcceptingJobs") @Expose @Nullable public Boolean isAcceptingJobsThe Is Accepting Jobs. Whether the printer/printerShare is currently accepting new print jobs. -
location
@SerializedName(value="location", alternate="Location") @Expose @Nullable public PrinterLocation locationThe Location. The physical and/or organizational location of the printer/printerShare. -
manufacturer
@SerializedName(value="manufacturer", alternate="Manufacturer") @Expose @Nullable public String manufacturerThe Manufacturer. The manufacturer of the printer/printerShare. -
model
The Model. The model name of the printer/printerShare. -
status
The Status. The processing status of the printer/printerShare, including any errors. -
jobs
@SerializedName(value="jobs", alternate="Jobs") @Expose @Nullable public PrintJobCollectionPage jobsThe Jobs. The list of jobs that are queued for printing by the printer/printerShare.
-
-
Constructor Details
-
PrinterBase
public PrinterBase()
-
-
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
-