| title | printerBase resource type |
|---|---|
| description | Represents the base type for printer and printer share. |
| author | braedenp-msft |
| ms.localizationpriority | medium |
| ms.subservice | universal-print |
| doc_type | resourcePageType |
| ms.date | 04/03/2024 |
Namespace: microsoft.graph
Represents the base type for the printer and printerShare entity types. Inherits from printerBase.
| 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. |
| Relationship | Type | Description |
|---|---|---|
| jobs | printJob collection | The list of jobs that are queued for printing by the printer/printerShare. |
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"
}
}