Muokkaa

Jaa


printerBase resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the base type for the printer and printerShare entity types. Inherits from printerBase.

Properties

Property Type Description
capabilities printerCapabilities The capabilities of the printer/printerShare.
defaults printerDefaults The default print settings of printer/printerShare.
displayName String The name of the printer/printerShare.
id String The identifier.
isAcceptingJobs Boolean Specifies whether the printer/printerShare is currently accepting new print jobs.
location printerLocation The physical and/or organizational location of the printer/printerShare.
manufacturer String The manufacturer of the printer/printerShare.
model String The model name of the printer/printerShare.
status printerStatus The processing status of the printer/printerShare, including any errors.

Relationships

Relationship Type Description
jobs printJob collection The list of jobs that are queued for printing by the printer/printerShare.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.printerBase",
  "id": "String (identifier)",
  "displayName": "String",
  "manufacturer": "String",
  "model": "String",
  "isAcceptingJobs": "Boolean",
  "defaults": {
    "@odata.type": "microsoft.graph.printerDefaults"
  },
  "location": {
    "@odata.type": "microsoft.graph.printerLocation"
  },
  "capabilities": {
    "@odata.type": "microsoft.graph.printerCapabilities"
  },
  "status": {
    "@odata.type": "microsoft.graph.printerStatus"
  }
}