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

com.google.api.services.firebase.v1beta1.model.RemoveAndroidAppRequest 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.firebase.v1beta1.model;

/**
 * Model definition for RemoveAndroidAppRequest.
 *
 * 

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 Firebase 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 RemoveAndroidAppRequest extends com.google.api.client.json.GenericJson { /** * If set to true, and the App is not found, the request will succeed but no action will be taken * on the server. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean allowMissing; /** * Checksum provided in the AndroidApp resource. If provided, this checksum ensures that the * client has an up-to-date value before proceeding. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String etag; /** * Determines whether to _immediately_ delete the AndroidApp. If set to true, the App is * immediately deleted from the Project and cannot be restored to the Project. If not set, * defaults to false, which means the App will be set to expire in 30 days. Within the 30 days, * the App may be restored to the Project using UndeleteAndroidApp. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean immediate; /** * If set to true, the request is only validated. The App will _not_ be removed. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean validateOnly; /** * If set to true, and the App is not found, the request will succeed but no action will be taken * on the server. * @return value or {@code null} for none */ public java.lang.Boolean getAllowMissing() { return allowMissing; } /** * If set to true, and the App is not found, the request will succeed but no action will be taken * on the server. * @param allowMissing allowMissing or {@code null} for none */ public RemoveAndroidAppRequest setAllowMissing(java.lang.Boolean allowMissing) { this.allowMissing = allowMissing; return this; } /** * Checksum provided in the AndroidApp resource. If provided, this checksum ensures that the * client has an up-to-date value before proceeding. * @return value or {@code null} for none */ public java.lang.String getEtag() { return etag; } /** * Checksum provided in the AndroidApp resource. If provided, this checksum ensures that the * client has an up-to-date value before proceeding. * @param etag etag or {@code null} for none */ public RemoveAndroidAppRequest setEtag(java.lang.String etag) { this.etag = etag; return this; } /** * Determines whether to _immediately_ delete the AndroidApp. If set to true, the App is * immediately deleted from the Project and cannot be restored to the Project. If not set, * defaults to false, which means the App will be set to expire in 30 days. Within the 30 days, * the App may be restored to the Project using UndeleteAndroidApp. * @return value or {@code null} for none */ public java.lang.Boolean getImmediate() { return immediate; } /** * Determines whether to _immediately_ delete the AndroidApp. If set to true, the App is * immediately deleted from the Project and cannot be restored to the Project. If not set, * defaults to false, which means the App will be set to expire in 30 days. Within the 30 days, * the App may be restored to the Project using UndeleteAndroidApp. * @param immediate immediate or {@code null} for none */ public RemoveAndroidAppRequest setImmediate(java.lang.Boolean immediate) { this.immediate = immediate; return this; } /** * If set to true, the request is only validated. The App will _not_ be removed. * @return value or {@code null} for none */ public java.lang.Boolean getValidateOnly() { return validateOnly; } /** * If set to true, the request is only validated. The App will _not_ be removed. * @param validateOnly validateOnly or {@code null} for none */ public RemoveAndroidAppRequest setValidateOnly(java.lang.Boolean validateOnly) { this.validateOnly = validateOnly; return this; } @Override public RemoveAndroidAppRequest set(String fieldName, Object value) { return (RemoveAndroidAppRequest) super.set(fieldName, value); } @Override public RemoveAndroidAppRequest clone() { return (RemoveAndroidAppRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy