All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.chromemanagement.v1.model.GoogleChromeManagementV1CountPrintJobsByUserResponse Maven / Gradle / Ivy

/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.chromemanagement.v1.model;

/**
 * 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.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Chrome Management API. For a detailed explanation * see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class GoogleChromeManagementV1CountPrintJobsByUserResponse extends com.google.api.client.json.GenericJson { /** * Pagination token for requesting the next page. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String nextPageToken; /** * Total number of users matching request. * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long totalSize; /** * List of UserPrintReports matching request. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List userPrintReports; /** * Pagination token for requesting the next page. * @return value or {@code null} for none */ public java.lang.String getNextPageToken() { return nextPageToken; } /** * Pagination token for requesting the next page. * @param nextPageToken nextPageToken or {@code null} for none */ public GoogleChromeManagementV1CountPrintJobsByUserResponse setNextPageToken(java.lang.String nextPageToken) { this.nextPageToken = nextPageToken; return this; } /** * Total number of users matching request. * @return value or {@code null} for none */ public java.lang.Long getTotalSize() { return totalSize; } /** * Total number of users matching request. * @param totalSize totalSize or {@code null} for none */ public GoogleChromeManagementV1CountPrintJobsByUserResponse setTotalSize(java.lang.Long totalSize) { this.totalSize = totalSize; return this; } /** * List of UserPrintReports matching request. * @return value or {@code null} for none */ public java.util.List getUserPrintReports() { return userPrintReports; } /** * List of UserPrintReports matching request. * @param userPrintReports userPrintReports or {@code null} for none */ public GoogleChromeManagementV1CountPrintJobsByUserResponse setUserPrintReports(java.util.List userPrintReports) { this.userPrintReports = userPrintReports; return this; } @Override public GoogleChromeManagementV1CountPrintJobsByUserResponse set(String fieldName, Object value) { return (GoogleChromeManagementV1CountPrintJobsByUserResponse) super.set(fieldName, value); } @Override public GoogleChromeManagementV1CountPrintJobsByUserResponse clone() { return (GoogleChromeManagementV1CountPrintJobsByUserResponse) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy