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_Analytics_Uploads extends Google_Collection
19{
20  protected $collection_key = 'items';
21  protected $itemsType = 'Google_Service_Analytics_Upload';
22  protected $itemsDataType = 'array';
23  public $itemsPerPage;
24  public $kind;
25  public $nextLink;
26  public $previousLink;
27  public $startIndex;
28  public $totalResults;
29
30  /**
31   * @param Google_Service_Analytics_Upload
32   */
33  public function setItems($items)
34  {
35    $this->items = $items;
36  }
37  /**
38   * @return Google_Service_Analytics_Upload
39   */
40  public function getItems()
41  {
42    return $this->items;
43  }
44  public function setItemsPerPage($itemsPerPage)
45  {
46    $this->itemsPerPage = $itemsPerPage;
47  }
48  public function getItemsPerPage()
49  {
50    return $this->itemsPerPage;
51  }
52  public function setKind($kind)
53  {
54    $this->kind = $kind;
55  }
56  public function getKind()
57  {
58    return $this->kind;
59  }
60  public function setNextLink($nextLink)
61  {
62    $this->nextLink = $nextLink;
63  }
64  public function getNextLink()
65  {
66    return $this->nextLink;
67  }
68  public function setPreviousLink($previousLink)
69  {
70    $this->previousLink = $previousLink;
71  }
72  public function getPreviousLink()
73  {
74    return $this->previousLink;
75  }
76  public function setStartIndex($startIndex)
77  {
78    $this->startIndex = $startIndex;
79  }
80  public function getStartIndex()
81  {
82    return $this->startIndex;
83  }
84  public function setTotalResults($totalResults)
85  {
86    $this->totalResults = $totalResults;
87  }
88  public function getTotalResults()
89  {
90    return $this->totalResults;
91  }
92}
93