123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <?php
- /*
- * Copyright 2014 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.
- */
-
- class Google_Service_ShoppingContent_InventorySetRequest extends Google_Model
- {
- public $availability;
- protected $installmentType = 'Google_Service_ShoppingContent_Installment';
- protected $installmentDataType = '';
- protected $loyaltyPointsType = 'Google_Service_ShoppingContent_LoyaltyPoints';
- protected $loyaltyPointsDataType = '';
- protected $pickupType = 'Google_Service_ShoppingContent_InventoryPickup';
- protected $pickupDataType = '';
- protected $priceType = 'Google_Service_ShoppingContent_Price';
- protected $priceDataType = '';
- public $quantity;
- protected $salePriceType = 'Google_Service_ShoppingContent_Price';
- protected $salePriceDataType = '';
- public $salePriceEffectiveDate;
- public $sellOnGoogleQuantity;
-
- public function setAvailability($availability)
- {
- $this->availability = $availability;
- }
- public function getAvailability()
- {
- return $this->availability;
- }
- /**
- * @param Google_Service_ShoppingContent_Installment
- */
- public function setInstallment(Google_Service_ShoppingContent_Installment $installment)
- {
- $this->installment = $installment;
- }
- /**
- * @return Google_Service_ShoppingContent_Installment
- */
- public function getInstallment()
- {
- return $this->installment;
- }
- /**
- * @param Google_Service_ShoppingContent_LoyaltyPoints
- */
- public function setLoyaltyPoints(Google_Service_ShoppingContent_LoyaltyPoints $loyaltyPoints)
- {
- $this->loyaltyPoints = $loyaltyPoints;
- }
- /**
- * @return Google_Service_ShoppingContent_LoyaltyPoints
- */
- public function getLoyaltyPoints()
- {
- return $this->loyaltyPoints;
- }
- /**
- * @param Google_Service_ShoppingContent_InventoryPickup
- */
- public function setPickup(Google_Service_ShoppingContent_InventoryPickup $pickup)
- {
- $this->pickup = $pickup;
- }
- /**
- * @return Google_Service_ShoppingContent_InventoryPickup
- */
- public function getPickup()
- {
- return $this->pickup;
- }
- /**
- * @param Google_Service_ShoppingContent_Price
- */
- public function setPrice(Google_Service_ShoppingContent_Price $price)
- {
- $this->price = $price;
- }
- /**
- * @return Google_Service_ShoppingContent_Price
- */
- public function getPrice()
- {
- return $this->price;
- }
- public function setQuantity($quantity)
- {
- $this->quantity = $quantity;
- }
- public function getQuantity()
- {
- return $this->quantity;
- }
- /**
- * @param Google_Service_ShoppingContent_Price
- */
- public function setSalePrice(Google_Service_ShoppingContent_Price $salePrice)
- {
- $this->salePrice = $salePrice;
- }
- /**
- * @return Google_Service_ShoppingContent_Price
- */
- public function getSalePrice()
- {
- return $this->salePrice;
- }
- public function setSalePriceEffectiveDate($salePriceEffectiveDate)
- {
- $this->salePriceEffectiveDate = $salePriceEffectiveDate;
- }
- public function getSalePriceEffectiveDate()
- {
- return $this->salePriceEffectiveDate;
- }
- public function setSellOnGoogleQuantity($sellOnGoogleQuantity)
- {
- $this->sellOnGoogleQuantity = $sellOnGoogleQuantity;
- }
- public function getSellOnGoogleQuantity()
- {
- return $this->sellOnGoogleQuantity;
- }
- }
|