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

com.google.api.services.cloudidentity.v1beta1.model.GoogleAppsCloudidentityDevicesV1alpha1EndpointApp Maven / Gradle / Ivy

There is a newer version: v1-rev20241208-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.cloudidentity.v1beta1.model;

/**
 * Next ID to use: 7
 *
 * 

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 Cloud Identity 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 GoogleAppsCloudidentityDevicesV1alpha1EndpointApp extends com.google.api.client.json.GenericJson { /** * Output only. Name of the app displayed to the user * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String displayName; /** * Output only. [Resource name](https://cloud.google.com/apis/design/resource_names) of the * EndpointApp in format: * `devices/{device}/deviceUsers/{device_user}/endpointApps/{endpoint_app}`, where client_app_id * is the ID of the app associated with the Device. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String name; /** * Output only. Full package name of the installed app * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String packageName; /** * Output only. Names of all permissions granted to the installed app * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List permissions; /** * Output only. Version code of the installed app * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer versionCode; /** * Output only. Version name of the installed app * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String versionName; /** * Output only. Name of the app displayed to the user * @return value or {@code null} for none */ public java.lang.String getDisplayName() { return displayName; } /** * Output only. Name of the app displayed to the user * @param displayName displayName or {@code null} for none */ public GoogleAppsCloudidentityDevicesV1alpha1EndpointApp setDisplayName(java.lang.String displayName) { this.displayName = displayName; return this; } /** * Output only. [Resource name](https://cloud.google.com/apis/design/resource_names) of the * EndpointApp in format: * `devices/{device}/deviceUsers/{device_user}/endpointApps/{endpoint_app}`, where client_app_id * is the ID of the app associated with the Device. * @return value or {@code null} for none */ public java.lang.String getName() { return name; } /** * Output only. [Resource name](https://cloud.google.com/apis/design/resource_names) of the * EndpointApp in format: * `devices/{device}/deviceUsers/{device_user}/endpointApps/{endpoint_app}`, where client_app_id * is the ID of the app associated with the Device. * @param name name or {@code null} for none */ public GoogleAppsCloudidentityDevicesV1alpha1EndpointApp setName(java.lang.String name) { this.name = name; return this; } /** * Output only. Full package name of the installed app * @return value or {@code null} for none */ public java.lang.String getPackageName() { return packageName; } /** * Output only. Full package name of the installed app * @param packageName packageName or {@code null} for none */ public GoogleAppsCloudidentityDevicesV1alpha1EndpointApp setPackageName(java.lang.String packageName) { this.packageName = packageName; return this; } /** * Output only. Names of all permissions granted to the installed app * @return value or {@code null} for none */ public java.util.List getPermissions() { return permissions; } /** * Output only. Names of all permissions granted to the installed app * @param permissions permissions or {@code null} for none */ public GoogleAppsCloudidentityDevicesV1alpha1EndpointApp setPermissions(java.util.List permissions) { this.permissions = permissions; return this; } /** * Output only. Version code of the installed app * @return value or {@code null} for none */ public java.lang.Integer getVersionCode() { return versionCode; } /** * Output only. Version code of the installed app * @param versionCode versionCode or {@code null} for none */ public GoogleAppsCloudidentityDevicesV1alpha1EndpointApp setVersionCode(java.lang.Integer versionCode) { this.versionCode = versionCode; return this; } /** * Output only. Version name of the installed app * @return value or {@code null} for none */ public java.lang.String getVersionName() { return versionName; } /** * Output only. Version name of the installed app * @param versionName versionName or {@code null} for none */ public GoogleAppsCloudidentityDevicesV1alpha1EndpointApp setVersionName(java.lang.String versionName) { this.versionName = versionName; return this; } @Override public GoogleAppsCloudidentityDevicesV1alpha1EndpointApp set(String fieldName, Object value) { return (GoogleAppsCloudidentityDevicesV1alpha1EndpointApp) super.set(fieldName, value); } @Override public GoogleAppsCloudidentityDevicesV1alpha1EndpointApp clone() { return (GoogleAppsCloudidentityDevicesV1alpha1EndpointApp) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy