You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pre>Get a summary of printing done by each printer.
355
+
356
+
Args:
357
+
customer: string, Required. Customer ID prefixed with "customers/" or "customers/my_customer" to use the customer associated to the account making the request. (required)
358
+
filter: string, Query string to filter results, AND-separated fields in EBNF syntax. Note: OR operations are not supported in this filter. Note: Only >= and <= comparators are supported in this filter. Supported filter fields: * completion_time
359
+
orderBy: string, Field used to order results. If omitted, results will be ordered in ascending order of the 'printer' field. Supported order_by fields: * printer * job_count * device_count * user_count
360
+
pageSize: integer, Maximum number of results to return. Maximum and default are 100.
361
+
pageToken: string, Token to specify the page of the response to be returned.
362
+
printerOrgUnitId: string, The ID of the organizational unit for printers. If specified, only data for printers from the specified organizational unit will be returned. If omitted, data for printers from all organizational units will be returned.
363
+
x__xgafv: string, V1 error format.
364
+
Allowed values
365
+
1 - v1 error format
366
+
2 - v2 error format
367
+
368
+
Returns:
369
+
An object of the form:
370
+
371
+
{ # Response containing a summary printing report for each printer from the specified organizational unit for the requested time interval.
372
+
"nextPageToken": "A String", # Pagination token for requesting the next page.
373
+
"printerReports": [ # List of PrinterReports matching request.
374
+
{ # Report for CountPrintJobsByPrinter, contains statistics on printer usage. Contains the total number of print jobs initiated with this printer, the number of users and the number of devices that have initiated at least one print job with this printer.
375
+
"deviceCount": "A String", # Number of chrome devices that have been used to send print jobs to the specified printer.
376
+
"jobCount": "A String", # Number of print jobs sent to the printer.
customer: string, Required. Customer ID prefixed with "customers/" or "customers/my_customer" to use the customer associated to the account making the request. (required)
407
+
filter: string, Query string to filter results, AND-separated fields in EBNF syntax. Note: OR operations are not supported in this filter. Note: Only >= and <= comparators are supported in this filter. Supported filter fields: * completion_time
408
+
orderBy: string, Field used to order results. If omitted, results will be ordered in ascending order of the 'user_email' field. Supported order_by fields: * user_email * job_count * printer_count * device_count
409
+
pageSize: integer, Maximum number of results to return. Maximum and default are 100.
410
+
pageToken: string, Token to specify the page of the response to be returned.
411
+
printerOrgUnitId: string, The ID of the organizational unit for printers. If specified, only print jobs initiated with printers from the specified organizational unit will be counted. If omitted, all print jobs will be counted.
412
+
x__xgafv: string, V1 error format.
413
+
Allowed values
414
+
1 - v1 error format
415
+
2 - v2 error format
416
+
417
+
Returns:
418
+
An object of the form:
419
+
420
+
{ # Response containing a summary printing report for each user that has initiated a print job with a printer from the specified organizational unit during the requested time interval.
421
+
"nextPageToken": "A String", # Pagination token for requesting the next page.
422
+
"totalSize": "A String", # Total number of users matching request.
423
+
"userPrintReports": [ # List of UserPrintReports matching request.
424
+
{ # Report for CountPrintJobsByUser, contains printing statistics for a user. Contains the number of printers, the number of devices used to initiate print jobs, and the number of print jobs initiated.
425
+
"deviceCount": "A String", # Number of chrome devices that have been used to initiate print jobs by the user.
426
+
"jobCount": "A String", # Number of print jobs initiated by the user.
427
+
"printerCount": "A String", # Number of printers used by the user.
428
+
"userEmail": "A String", # The primary e-mail address of the user.
429
+
"userId": "A String", # The unique Directory API ID of the user.
0 commit comments