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_CreativeCustomEvent extends Google_Model
19{
20  public $advertiserCustomEventId;
21  public $advertiserCustomEventName;
22  public $advertiserCustomEventType;
23  public $artworkLabel;
24  public $artworkType;
25  protected $exitClickThroughUrlType = 'Google_Service_Dfareporting_CreativeClickThroughUrl';
26  protected $exitClickThroughUrlDataType = '';
27  public $id;
28  protected $popupWindowPropertiesType = 'Google_Service_Dfareporting_PopupWindowProperties';
29  protected $popupWindowPropertiesDataType = '';
30  public $targetType;
31  public $videoReportingId;
32
33  public function setAdvertiserCustomEventId($advertiserCustomEventId)
34  {
35    $this->advertiserCustomEventId = $advertiserCustomEventId;
36  }
37  public function getAdvertiserCustomEventId()
38  {
39    return $this->advertiserCustomEventId;
40  }
41  public function setAdvertiserCustomEventName($advertiserCustomEventName)
42  {
43    $this->advertiserCustomEventName = $advertiserCustomEventName;
44  }
45  public function getAdvertiserCustomEventName()
46  {
47    return $this->advertiserCustomEventName;
48  }
49  public function setAdvertiserCustomEventType($advertiserCustomEventType)
50  {
51    $this->advertiserCustomEventType = $advertiserCustomEventType;
52  }
53  public function getAdvertiserCustomEventType()
54  {
55    return $this->advertiserCustomEventType;
56  }
57  public function setArtworkLabel($artworkLabel)
58  {
59    $this->artworkLabel = $artworkLabel;
60  }
61  public function getArtworkLabel()
62  {
63    return $this->artworkLabel;
64  }
65  public function setArtworkType($artworkType)
66  {
67    $this->artworkType = $artworkType;
68  }
69  public function getArtworkType()
70  {
71    return $this->artworkType;
72  }
73  /**
74   * @param Google_Service_Dfareporting_CreativeClickThroughUrl
75   */
76  public function setExitClickThroughUrl(Google_Service_Dfareporting_CreativeClickThroughUrl $exitClickThroughUrl)
77  {
78    $this->exitClickThroughUrl = $exitClickThroughUrl;
79  }
80  /**
81   * @return Google_Service_Dfareporting_CreativeClickThroughUrl
82   */
83  public function getExitClickThroughUrl()
84  {
85    return $this->exitClickThroughUrl;
86  }
87  public function setId($id)
88  {
89    $this->id = $id;
90  }
91  public function getId()
92  {
93    return $this->id;
94  }
95  /**
96   * @param Google_Service_Dfareporting_PopupWindowProperties
97   */
98  public function setPopupWindowProperties(Google_Service_Dfareporting_PopupWindowProperties $popupWindowProperties)
99  {
100    $this->popupWindowProperties = $popupWindowProperties;
101  }
102  /**
103   * @return Google_Service_Dfareporting_PopupWindowProperties
104   */
105  public function getPopupWindowProperties()
106  {
107    return $this->popupWindowProperties;
108  }
109  public function setTargetType($targetType)
110  {
111    $this->targetType = $targetType;
112  }
113  public function getTargetType()
114  {
115    return $this->targetType;
116  }
117  public function setVideoReportingId($videoReportingId)
118  {
119    $this->videoReportingId = $videoReportingId;
120  }
121  public function getVideoReportingId()
122  {
123    return $this->videoReportingId;
124  }
125}
126