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

com.google.api.services.docs.v1.model.ImagePropertiesSuggestionState Maven / Gradle / Ivy

There is a newer version: v1-rev20240730-2.0.0
Show newest version
/*
 * Copyright 2010 Google Inc.
 *
 * 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/google/apis-client-generator/
 * (build: 2018-10-08 17:45:39 UTC)
 * on 2019-02-11 at 20:39:12 UTC 
 * Modify at your own risk.
 */

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

/**
 * A mask that indicates which of the fields on the base ImageProperties have been changed in this
 * suggestion. For any field set to true, there is a new suggested value.
 *
 * 

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 Google Docs 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 ImagePropertiesSuggestionState extends com.google.api.client.json.GenericJson { /** * Indicates if there was a suggested change to angle. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean angleSuggested; /** * Indicates if there was a suggested change to brightness. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean brightnessSuggested; /** * Indicates if there was a suggested change to content_uri. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean contentUriSuggested; /** * Indicates if there was a suggested change to contrast. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean contrastSuggested; /** * A mask that indicates which of the fields in crop_properties have been changed in this * suggestion. * The value may be {@code null}. */ @com.google.api.client.util.Key private CropPropertiesSuggestionState cropPropertiesSuggestionState; /** * Indicates if there was a suggested change to source_uri. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean sourceUriSuggested; /** * Indicates if there was a suggested change to transparency. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean transparencySuggested; /** * Indicates if there was a suggested change to angle. * @return value or {@code null} for none */ public java.lang.Boolean getAngleSuggested() { return angleSuggested; } /** * Indicates if there was a suggested change to angle. * @param angleSuggested angleSuggested or {@code null} for none */ public ImagePropertiesSuggestionState setAngleSuggested(java.lang.Boolean angleSuggested) { this.angleSuggested = angleSuggested; return this; } /** * Indicates if there was a suggested change to brightness. * @return value or {@code null} for none */ public java.lang.Boolean getBrightnessSuggested() { return brightnessSuggested; } /** * Indicates if there was a suggested change to brightness. * @param brightnessSuggested brightnessSuggested or {@code null} for none */ public ImagePropertiesSuggestionState setBrightnessSuggested(java.lang.Boolean brightnessSuggested) { this.brightnessSuggested = brightnessSuggested; return this; } /** * Indicates if there was a suggested change to content_uri. * @return value or {@code null} for none */ public java.lang.Boolean getContentUriSuggested() { return contentUriSuggested; } /** * Indicates if there was a suggested change to content_uri. * @param contentUriSuggested contentUriSuggested or {@code null} for none */ public ImagePropertiesSuggestionState setContentUriSuggested(java.lang.Boolean contentUriSuggested) { this.contentUriSuggested = contentUriSuggested; return this; } /** * Indicates if there was a suggested change to contrast. * @return value or {@code null} for none */ public java.lang.Boolean getContrastSuggested() { return contrastSuggested; } /** * Indicates if there was a suggested change to contrast. * @param contrastSuggested contrastSuggested or {@code null} for none */ public ImagePropertiesSuggestionState setContrastSuggested(java.lang.Boolean contrastSuggested) { this.contrastSuggested = contrastSuggested; return this; } /** * A mask that indicates which of the fields in crop_properties have been changed in this * suggestion. * @return value or {@code null} for none */ public CropPropertiesSuggestionState getCropPropertiesSuggestionState() { return cropPropertiesSuggestionState; } /** * A mask that indicates which of the fields in crop_properties have been changed in this * suggestion. * @param cropPropertiesSuggestionState cropPropertiesSuggestionState or {@code null} for none */ public ImagePropertiesSuggestionState setCropPropertiesSuggestionState(CropPropertiesSuggestionState cropPropertiesSuggestionState) { this.cropPropertiesSuggestionState = cropPropertiesSuggestionState; return this; } /** * Indicates if there was a suggested change to source_uri. * @return value or {@code null} for none */ public java.lang.Boolean getSourceUriSuggested() { return sourceUriSuggested; } /** * Indicates if there was a suggested change to source_uri. * @param sourceUriSuggested sourceUriSuggested or {@code null} for none */ public ImagePropertiesSuggestionState setSourceUriSuggested(java.lang.Boolean sourceUriSuggested) { this.sourceUriSuggested = sourceUriSuggested; return this; } /** * Indicates if there was a suggested change to transparency. * @return value or {@code null} for none */ public java.lang.Boolean getTransparencySuggested() { return transparencySuggested; } /** * Indicates if there was a suggested change to transparency. * @param transparencySuggested transparencySuggested or {@code null} for none */ public ImagePropertiesSuggestionState setTransparencySuggested(java.lang.Boolean transparencySuggested) { this.transparencySuggested = transparencySuggested; return this; } @Override public ImagePropertiesSuggestionState set(String fieldName, Object value) { return (ImagePropertiesSuggestionState) super.set(fieldName, value); } @Override public ImagePropertiesSuggestionState clone() { return (ImagePropertiesSuggestionState) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy