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

com.google.api.services.chromemanagement.v1.model.GoogleChromeManagementV1BrowserVersion 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;

/**
 * Describes a browser version and its install count.
 *
 * 

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 GoogleChromeManagementV1BrowserVersion extends com.google.api.client.json.GenericJson { /** * Output only. The release channel of the installed browser. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String channel; /** * Output only. Count grouped by device_system and major version * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long count; /** * Output only. Version of the system-specified operating system. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String deviceOsVersion; /** * Output only. The device operating system. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String system; /** * Output only. The full version of the installed browser. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String version; /** * Output only. The release channel of the installed browser. * @return value or {@code null} for none */ public java.lang.String getChannel() { return channel; } /** * Output only. The release channel of the installed browser. * @param channel channel or {@code null} for none */ public GoogleChromeManagementV1BrowserVersion setChannel(java.lang.String channel) { this.channel = channel; return this; } /** * Output only. Count grouped by device_system and major version * @return value or {@code null} for none */ public java.lang.Long getCount() { return count; } /** * Output only. Count grouped by device_system and major version * @param count count or {@code null} for none */ public GoogleChromeManagementV1BrowserVersion setCount(java.lang.Long count) { this.count = count; return this; } /** * Output only. Version of the system-specified operating system. * @return value or {@code null} for none */ public java.lang.String getDeviceOsVersion() { return deviceOsVersion; } /** * Output only. Version of the system-specified operating system. * @param deviceOsVersion deviceOsVersion or {@code null} for none */ public GoogleChromeManagementV1BrowserVersion setDeviceOsVersion(java.lang.String deviceOsVersion) { this.deviceOsVersion = deviceOsVersion; return this; } /** * Output only. The device operating system. * @return value or {@code null} for none */ public java.lang.String getSystem() { return system; } /** * Output only. The device operating system. * @param system system or {@code null} for none */ public GoogleChromeManagementV1BrowserVersion setSystem(java.lang.String system) { this.system = system; return this; } /** * Output only. The full version of the installed browser. * @return value or {@code null} for none */ public java.lang.String getVersion() { return version; } /** * Output only. The full version of the installed browser. * @param version version or {@code null} for none */ public GoogleChromeManagementV1BrowserVersion setVersion(java.lang.String version) { this.version = version; return this; } @Override public GoogleChromeManagementV1BrowserVersion set(String fieldName, Object value) { return (GoogleChromeManagementV1BrowserVersion) super.set(fieldName, value); } @Override public GoogleChromeManagementV1BrowserVersion clone() { return (GoogleChromeManagementV1BrowserVersion) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy