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_ObaIcon extends Google_Model
19{
20  public $iconClickThroughUrl;
21  public $iconClickTrackingUrl;
22  public $iconViewTrackingUrl;
23  public $program;
24  public $resourceUrl;
25  protected $sizeType = 'Google_Service_Dfareporting_Size';
26  protected $sizeDataType = '';
27  public $xPosition;
28  public $yPosition;
29
30  public function setIconClickThroughUrl($iconClickThroughUrl)
31  {
32    $this->iconClickThroughUrl = $iconClickThroughUrl;
33  }
34  public function getIconClickThroughUrl()
35  {
36    return $this->iconClickThroughUrl;
37  }
38  public function setIconClickTrackingUrl($iconClickTrackingUrl)
39  {
40    $this->iconClickTrackingUrl = $iconClickTrackingUrl;
41  }
42  public function getIconClickTrackingUrl()
43  {
44    return $this->iconClickTrackingUrl;
45  }
46  public function setIconViewTrackingUrl($iconViewTrackingUrl)
47  {
48    $this->iconViewTrackingUrl = $iconViewTrackingUrl;
49  }
50  public function getIconViewTrackingUrl()
51  {
52    return $this->iconViewTrackingUrl;
53  }
54  public function setProgram($program)
55  {
56    $this->program = $program;
57  }
58  public function getProgram()
59  {
60    return $this->program;
61  }
62  public function setResourceUrl($resourceUrl)
63  {
64    $this->resourceUrl = $resourceUrl;
65  }
66  public function getResourceUrl()
67  {
68    return $this->resourceUrl;
69  }
70  /**
71   * @param Google_Service_Dfareporting_Size
72   */
73  public function setSize(Google_Service_Dfareporting_Size $size)
74  {
75    $this->size = $size;
76  }
77  /**
78   * @return Google_Service_Dfareporting_Size
79   */
80  public function getSize()
81  {
82    return $this->size;
83  }
84  public function setXPosition($xPosition)
85  {
86    $this->xPosition = $xPosition;
87  }
88  public function getXPosition()
89  {
90    return $this->xPosition;
91  }
92  public function setYPosition($yPosition)
93  {
94    $this->yPosition = $yPosition;
95  }
96  public function getYPosition()
97  {
98    return $this->yPosition;
99  }
100}
101