1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_ShoppingContent_ReturnShipment extends Google_Collection
19{
20  protected $collection_key = 'shipmentTrackingInfos';
21  public $creationDate;
22  public $deliveryDate;
23  public $returnMethodType;
24  public $shipmentId;
25  protected $shipmentTrackingInfosType = 'Google_Service_ShoppingContent_ShipmentTrackingInfo';
26  protected $shipmentTrackingInfosDataType = 'array';
27  public $shippingDate;
28  public $state;
29
30  public function setCreationDate($creationDate)
31  {
32    $this->creationDate = $creationDate;
33  }
34  public function getCreationDate()
35  {
36    return $this->creationDate;
37  }
38  public function setDeliveryDate($deliveryDate)
39  {
40    $this->deliveryDate = $deliveryDate;
41  }
42  public function getDeliveryDate()
43  {
44    return $this->deliveryDate;
45  }
46  public function setReturnMethodType($returnMethodType)
47  {
48    $this->returnMethodType = $returnMethodType;
49  }
50  public function getReturnMethodType()
51  {
52    return $this->returnMethodType;
53  }
54  public function setShipmentId($shipmentId)
55  {
56    $this->shipmentId = $shipmentId;
57  }
58  public function getShipmentId()
59  {
60    return $this->shipmentId;
61  }
62  /**
63   * @param Google_Service_ShoppingContent_ShipmentTrackingInfo[]
64   */
65  public function setShipmentTrackingInfos($shipmentTrackingInfos)
66  {
67    $this->shipmentTrackingInfos = $shipmentTrackingInfos;
68  }
69  /**
70   * @return Google_Service_ShoppingContent_ShipmentTrackingInfo[]
71   */
72  public function getShipmentTrackingInfos()
73  {
74    return $this->shipmentTrackingInfos;
75  }
76  public function setShippingDate($shippingDate)
77  {
78    $this->shippingDate = $shippingDate;
79  }
80  public function getShippingDate()
81  {
82    return $this->shippingDate;
83  }
84  public function setState($state)
85  {
86    $this->state = $state;
87  }
88  public function getState()
89  {
90    return $this->state;
91  }
92}
93