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_Dfareporting_LandingPage extends Google_Collection
19{
20  protected $collection_key = 'deepLinks';
21  public $advertiserId;
22  public $archived;
23  protected $deepLinksType = 'Google_Service_Dfareporting_DeepLink';
24  protected $deepLinksDataType = 'array';
25  public $id;
26  public $kind;
27  public $name;
28  public $url;
29
30  public function setAdvertiserId($advertiserId)
31  {
32    $this->advertiserId = $advertiserId;
33  }
34  public function getAdvertiserId()
35  {
36    return $this->advertiserId;
37  }
38  public function setArchived($archived)
39  {
40    $this->archived = $archived;
41  }
42  public function getArchived()
43  {
44    return $this->archived;
45  }
46  /**
47   * @param Google_Service_Dfareporting_DeepLink[]
48   */
49  public function setDeepLinks($deepLinks)
50  {
51    $this->deepLinks = $deepLinks;
52  }
53  /**
54   * @return Google_Service_Dfareporting_DeepLink[]
55   */
56  public function getDeepLinks()
57  {
58    return $this->deepLinks;
59  }
60  public function setId($id)
61  {
62    $this->id = $id;
63  }
64  public function getId()
65  {
66    return $this->id;
67  }
68  public function setKind($kind)
69  {
70    $this->kind = $kind;
71  }
72  public function getKind()
73  {
74    return $this->kind;
75  }
76  public function setName($name)
77  {
78    $this->name = $name;
79  }
80  public function getName()
81  {
82    return $this->name;
83  }
84  public function setUrl($url)
85  {
86    $this->url = $url;
87  }
88  public function getUrl()
89  {
90    return $this->url;
91  }
92}
93