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

com.google.api.services.content.model.InventorySetRequest 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: 2015-03-26 20:30:19 UTC)
 * on 2015-06-05 at 00:40:03 UTC 
 * Modify at your own risk.
 */

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

/**
 * Model definition for InventorySetRequest.
 *
 * 

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 InventorySetRequest extends com.google.api.client.json.GenericJson { /** * The availability of the product. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String availability; /** * The price of the product. * The value may be {@code null}. */ @com.google.api.client.util.Key private 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.Key private 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.Key private 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.Key private 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 InventorySetRequest setAvailability(java.lang.String availability) { this.availability = availability; 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 InventorySetRequest 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 InventorySetRequest 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 InventorySetRequest 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 InventorySetRequest setSalePriceEffectiveDate(java.lang.String salePriceEffectiveDate) { this.salePriceEffectiveDate = salePriceEffectiveDate; return this; } @Override public InventorySetRequest set(String fieldName, Object value) { return (InventorySetRequest) super.set(fieldName, value); } @Override public InventorySetRequest clone() { return (InventorySetRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy