Blame | Last modification | View Log | RSS feed
/** 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-09 17:08:39 UTC)* on 2014-07-23 at 21:49:03 UTC* Modify at your own risk.*/package com.google.api.services.content.model;/*** Model definition for Inventory.** <p> 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:* <a href="http://code.google.com/p/google-http-java-client/wiki/JSON">http://code.google.com/p/google-http-java-client/wiki/JSON</a>* </p>** @author Google, Inc.*/@SuppressWarnings("javadoc")public final class Inventory extends com.google.api.client.json.GenericJson {/*** The availability of the product.* The value may be {@code null}.*/@com.google.api.client.util.Keyprivate java.lang.String availability;/*** Identifies what kind of resource this is. Value: the fixed string "content#inventory".* The value may be {@code null}.*/@com.google.api.client.util.Keyprivate java.lang.String kind;/*** The price of the product.* The value may be {@code null}.*/@com.google.api.client.util.Keyprivate Price price;/*** The quantity of the product. Must be equal to or greater than zero. Supported only for local* products.* The value may be {@code null}.*/@com.google.api.client.util.Keyprivate java.lang.Long quantity;/*** The sale price of the product. Mandatory if sale_price_effective_date is defined.* The value may be {@code null}.*/@com.google.api.client.util.Keyprivate Price salePrice;/*** A date range represented by a pair of ISO 8601 dates separated by a space, comma, or slash.* Both dates might be specified as 'null' if undecided.* The value may be {@code null}.*/@com.google.api.client.util.Keyprivate java.lang.String salePriceEffectiveDate;/*** The availability of the product.* @return value or {@code null} for none*/public java.lang.String getAvailability() {return availability;}/*** The availability of the product.* @param availability availability or {@code null} for none*/public Inventory setAvailability(java.lang.String availability) {this.availability = availability;return this;}/*** Identifies what kind of resource this is. Value: the fixed string "content#inventory".* @return value or {@code null} for none*/public java.lang.String getKind() {return kind;}/*** Identifies what kind of resource this is. Value: the fixed string "content#inventory".* @param kind kind or {@code null} for none*/public Inventory setKind(java.lang.String kind) {this.kind = kind;return this;}/*** The price of the product.* @return value or {@code null} for none*/public Price getPrice() {return price;}/*** The price of the product.* @param price price or {@code null} for none*/public Inventory setPrice(Price price) {this.price = price;return this;}/*** The quantity of the product. Must be equal to or greater than zero. Supported only for local* products.* @return value or {@code null} for none*/public java.lang.Long getQuantity() {return quantity;}/*** The quantity of the product. Must be equal to or greater than zero. Supported only for local* products.* @param quantity quantity or {@code null} for none*/public Inventory setQuantity(java.lang.Long quantity) {this.quantity = quantity;return this;}/*** The sale price of the product. Mandatory if sale_price_effective_date is defined.* @return value or {@code null} for none*/public Price getSalePrice() {return salePrice;}/*** The sale price of the product. Mandatory if sale_price_effective_date is defined.* @param salePrice salePrice or {@code null} for none*/public Inventory setSalePrice(Price salePrice) {this.salePrice = salePrice;return this;}/*** A date range represented by a pair of ISO 8601 dates separated by a space, comma, or slash.* Both dates might be specified as 'null' if undecided.* @return value or {@code null} for none*/public java.lang.String getSalePriceEffectiveDate() {return salePriceEffectiveDate;}/*** A date range represented by a pair of ISO 8601 dates separated by a space, comma, or slash.* Both dates might be specified as 'null' if undecided.* @param salePriceEffectiveDate salePriceEffectiveDate or {@code null} for none*/public Inventory setSalePriceEffectiveDate(java.lang.String salePriceEffectiveDate) {this.salePriceEffectiveDate = salePriceEffectiveDate;return this;}@Overridepublic Inventory set(String fieldName, Object value) {return (Inventory) super.set(fieldName, value);}@Overridepublic Inventory clone() {return (Inventory) super.clone();}}