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

com.google.api.services.content.model.AccountStatusExampleItem Maven / Gradle / Ivy

There is a newer version: v2.1-rev20241217-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://code.google.com/p/google-apis-client-generator/
 * (build: 2014-07-22 21:53:01 UTC)
 * on 2014-10-10 at 20:21:11 UTC 
 * Modify at your own risk.
 */

package com.google.api.services.content.model;

/**
 * An example of an item that has poor data quality. An item value on the landing page differs from
 * what is submitted, or conflicts with a policy.
 *
 * 

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 Content API for Shopping. For a detailed explanation * see: * http://code.google.com/p/google-http-java-client/wiki/JSON *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class AccountStatusExampleItem extends com.google.api.client.json.GenericJson { /** * Unique item ID as specified in the uploaded product data. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String itemId; /** * Landing page of the item. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String link; /** * The item value that was submitted. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String submittedValue; /** * Title of the item. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String title; /** * The actual value on the landing page. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String valueOnLandingPage; /** * Unique item ID as specified in the uploaded product data. * @return value or {@code null} for none */ public java.lang.String getItemId() { return itemId; } /** * Unique item ID as specified in the uploaded product data. * @param itemId itemId or {@code null} for none */ public AccountStatusExampleItem setItemId(java.lang.String itemId) { this.itemId = itemId; return this; } /** * Landing page of the item. * @return value or {@code null} for none */ public java.lang.String getLink() { return link; } /** * Landing page of the item. * @param link link or {@code null} for none */ public AccountStatusExampleItem setLink(java.lang.String link) { this.link = link; return this; } /** * The item value that was submitted. * @return value or {@code null} for none */ public java.lang.String getSubmittedValue() { return submittedValue; } /** * The item value that was submitted. * @param submittedValue submittedValue or {@code null} for none */ public AccountStatusExampleItem setSubmittedValue(java.lang.String submittedValue) { this.submittedValue = submittedValue; return this; } /** * Title of the item. * @return value or {@code null} for none */ public java.lang.String getTitle() { return title; } /** * Title of the item. * @param title title or {@code null} for none */ public AccountStatusExampleItem setTitle(java.lang.String title) { this.title = title; return this; } /** * The actual value on the landing page. * @return value or {@code null} for none */ public java.lang.String getValueOnLandingPage() { return valueOnLandingPage; } /** * The actual value on the landing page. * @param valueOnLandingPage valueOnLandingPage or {@code null} for none */ public AccountStatusExampleItem setValueOnLandingPage(java.lang.String valueOnLandingPage) { this.valueOnLandingPage = valueOnLandingPage; return this; } @Override public AccountStatusExampleItem set(String fieldName, Object value) { return (AccountStatusExampleItem) super.set(fieldName, value); } @Override public AccountStatusExampleItem clone() { return (AccountStatusExampleItem) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy