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_AdSlot extends Google_Model
19{
20  public $comment;
21  public $compatibility;
22  public $height;
23  public $linkedPlacementId;
24  public $name;
25  public $paymentSourceType;
26  public $primary;
27  public $width;
28
29  public function setComment($comment)
30  {
31    $this->comment = $comment;
32  }
33  public function getComment()
34  {
35    return $this->comment;
36  }
37  public function setCompatibility($compatibility)
38  {
39    $this->compatibility = $compatibility;
40  }
41  public function getCompatibility()
42  {
43    return $this->compatibility;
44  }
45  public function setHeight($height)
46  {
47    $this->height = $height;
48  }
49  public function getHeight()
50  {
51    return $this->height;
52  }
53  public function setLinkedPlacementId($linkedPlacementId)
54  {
55    $this->linkedPlacementId = $linkedPlacementId;
56  }
57  public function getLinkedPlacementId()
58  {
59    return $this->linkedPlacementId;
60  }
61  public function setName($name)
62  {
63    $this->name = $name;
64  }
65  public function getName()
66  {
67    return $this->name;
68  }
69  public function setPaymentSourceType($paymentSourceType)
70  {
71    $this->paymentSourceType = $paymentSourceType;
72  }
73  public function getPaymentSourceType()
74  {
75    return $this->paymentSourceType;
76  }
77  public function setPrimary($primary)
78  {
79    $this->primary = $primary;
80  }
81  public function getPrimary()
82  {
83    return $this->primary;
84  }
85  public function setWidth($width)
86  {
87    $this->width = $width;
88  }
89  public function getWidth()
90  {
91    return $this->width;
92  }
93}
94