Viewing file: OrderTrackingSignalShippingInfo.php (4.15 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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_OrderTrackingSignalShippingInfo extends Google_Model { protected $actualDeliveryTimeType = 'Google_Service_ShoppingContent_DateTime'; protected $actualDeliveryTimeDataType = ''; public $carrierName; public $carrierServiceName; protected $earliestDeliveryPromiseTimeType = 'Google_Service_ShoppingContent_DateTime'; protected $earliestDeliveryPromiseTimeDataType = ''; protected $latestDeliveryPromiseTimeType = 'Google_Service_ShoppingContent_DateTime'; protected $latestDeliveryPromiseTimeDataType = ''; public $originPostalCode; public $originRegionCode; public $shipmentId; protected $shippedTimeType = 'Google_Service_ShoppingContent_DateTime'; protected $shippedTimeDataType = ''; public $shippingStatus; public $trackingId;
/** * @param Google_Service_ShoppingContent_DateTime */ public function setActualDeliveryTime(Google_Service_ShoppingContent_DateTime $actualDeliveryTime) { $this->actualDeliveryTime = $actualDeliveryTime; } /** * @return Google_Service_ShoppingContent_DateTime */ public function getActualDeliveryTime() { return $this->actualDeliveryTime; } public function setCarrierName($carrierName) { $this->carrierName = $carrierName; } public function getCarrierName() { return $this->carrierName; } public function setCarrierServiceName($carrierServiceName) { $this->carrierServiceName = $carrierServiceName; } public function getCarrierServiceName() { return $this->carrierServiceName; } /** * @param Google_Service_ShoppingContent_DateTime */ public function setEarliestDeliveryPromiseTime(Google_Service_ShoppingContent_DateTime $earliestDeliveryPromiseTime) { $this->earliestDeliveryPromiseTime = $earliestDeliveryPromiseTime; } /** * @return Google_Service_ShoppingContent_DateTime */ public function getEarliestDeliveryPromiseTime() { return $this->earliestDeliveryPromiseTime; } /** * @param Google_Service_ShoppingContent_DateTime */ public function setLatestDeliveryPromiseTime(Google_Service_ShoppingContent_DateTime $latestDeliveryPromiseTime) { $this->latestDeliveryPromiseTime = $latestDeliveryPromiseTime; } /** * @return Google_Service_ShoppingContent_DateTime */ public function getLatestDeliveryPromiseTime() { return $this->latestDeliveryPromiseTime; } public function setOriginPostalCode($originPostalCode) { $this->originPostalCode = $originPostalCode; } public function getOriginPostalCode() { return $this->originPostalCode; } public function setOriginRegionCode($originRegionCode) { $this->originRegionCode = $originRegionCode; } public function getOriginRegionCode() { return $this->originRegionCode; } public function setShipmentId($shipmentId) { $this->shipmentId = $shipmentId; } public function getShipmentId() { return $this->shipmentId; } /** * @param Google_Service_ShoppingContent_DateTime */ public function setShippedTime(Google_Service_ShoppingContent_DateTime $shippedTime) { $this->shippedTime = $shippedTime; } /** * @return Google_Service_ShoppingContent_DateTime */ public function getShippedTime() { return $this->shippedTime; } public function setShippingStatus($shippingStatus) { $this->shippingStatus = $shippingStatus; } public function getShippingStatus() { return $this->shippingStatus; } public function setTrackingId($trackingId) { $this->trackingId = $trackingId; } public function getTrackingId() { return $this->trackingId; } }
|