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

com.google.api.services.androidmanagement.v1.model.AppVersion Maven / Gradle / Ivy

There is a newer version: v1-rev20241204-2.0.0
Show newest version
/*
 * 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.androidmanagement.v1.model;

/**
 * This represents a single version of the app.
 *
 * 

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 Android 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 AppVersion extends com.google.api.client.json.GenericJson { /** * If the value is True, it indicates that this version is a production track. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean production; /** * Track identifiers that the app version is published in. This does not include the production * track (see production instead). * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List trackIds; /** * Unique increasing identifier for the app version. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer versionCode; /** * The string used in the Play store by the app developer to identify the version. The string is * not necessarily unique or localized (for example, the string could be "1.4"). * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String versionString; /** * If the value is True, it indicates that this version is a production track. * @return value or {@code null} for none */ public java.lang.Boolean getProduction() { return production; } /** * If the value is True, it indicates that this version is a production track. * @param production production or {@code null} for none */ public AppVersion setProduction(java.lang.Boolean production) { this.production = production; return this; } /** * Track identifiers that the app version is published in. This does not include the production * track (see production instead). * @return value or {@code null} for none */ public java.util.List getTrackIds() { return trackIds; } /** * Track identifiers that the app version is published in. This does not include the production * track (see production instead). * @param trackIds trackIds or {@code null} for none */ public AppVersion setTrackIds(java.util.List trackIds) { this.trackIds = trackIds; return this; } /** * Unique increasing identifier for the app version. * @return value or {@code null} for none */ public java.lang.Integer getVersionCode() { return versionCode; } /** * Unique increasing identifier for the app version. * @param versionCode versionCode or {@code null} for none */ public AppVersion setVersionCode(java.lang.Integer versionCode) { this.versionCode = versionCode; return this; } /** * The string used in the Play store by the app developer to identify the version. The string is * not necessarily unique or localized (for example, the string could be "1.4"). * @return value or {@code null} for none */ public java.lang.String getVersionString() { return versionString; } /** * The string used in the Play store by the app developer to identify the version. The string is * not necessarily unique or localized (for example, the string could be "1.4"). * @param versionString versionString or {@code null} for none */ public AppVersion setVersionString(java.lang.String versionString) { this.versionString = versionString; return this; } @Override public AppVersion set(String fieldName, Object value) { return (AppVersion) super.set(fieldName, value); } @Override public AppVersion clone() { return (AppVersion) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy