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_SearchConsole_WmxSitemap extends Google_Collection
19{
20  protected $collection_key = 'contents';
21  protected $contentsType = 'Google_Service_SearchConsole_WmxSitemapContent';
22  protected $contentsDataType = 'array';
23  public $errors;
24  public $isPending;
25  public $isSitemapsIndex;
26  public $lastDownloaded;
27  public $lastSubmitted;
28  public $path;
29  public $type;
30  public $warnings;
31
32  /**
33   * @param Google_Service_SearchConsole_WmxSitemapContent[]
34   */
35  public function setContents($contents)
36  {
37    $this->contents = $contents;
38  }
39  /**
40   * @return Google_Service_SearchConsole_WmxSitemapContent[]
41   */
42  public function getContents()
43  {
44    return $this->contents;
45  }
46  public function setErrors($errors)
47  {
48    $this->errors = $errors;
49  }
50  public function getErrors()
51  {
52    return $this->errors;
53  }
54  public function setIsPending($isPending)
55  {
56    $this->isPending = $isPending;
57  }
58  public function getIsPending()
59  {
60    return $this->isPending;
61  }
62  public function setIsSitemapsIndex($isSitemapsIndex)
63  {
64    $this->isSitemapsIndex = $isSitemapsIndex;
65  }
66  public function getIsSitemapsIndex()
67  {
68    return $this->isSitemapsIndex;
69  }
70  public function setLastDownloaded($lastDownloaded)
71  {
72    $this->lastDownloaded = $lastDownloaded;
73  }
74  public function getLastDownloaded()
75  {
76    return $this->lastDownloaded;
77  }
78  public function setLastSubmitted($lastSubmitted)
79  {
80    $this->lastSubmitted = $lastSubmitted;
81  }
82  public function getLastSubmitted()
83  {
84    return $this->lastSubmitted;
85  }
86  public function setPath($path)
87  {
88    $this->path = $path;
89  }
90  public function getPath()
91  {
92    return $this->path;
93  }
94  public function setType($type)
95  {
96    $this->type = $type;
97  }
98  public function getType()
99  {
100    return $this->type;
101  }
102  public function setWarnings($warnings)
103  {
104    $this->warnings = $warnings;
105  }
106  public function getWarnings()
107  {
108    return $this->warnings;
109  }
110}
111