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
18namespace Google\Service\RealTimeBidding;
19
20class PolicyTopicEvidence extends \Google\Model
21{
22  protected $destinationNotCrawlableType = DestinationNotCrawlableEvidence::class;
23  protected $destinationNotCrawlableDataType = '';
24  protected $destinationNotWorkingType = DestinationNotWorkingEvidence::class;
25  protected $destinationNotWorkingDataType = '';
26  protected $destinationUrlType = DestinationUrlEvidence::class;
27  protected $destinationUrlDataType = '';
28  protected $domainCallType = DomainCallEvidence::class;
29  protected $domainCallDataType = '';
30  protected $downloadSizeType = DownloadSizeEvidence::class;
31  protected $downloadSizeDataType = '';
32  protected $httpCallType = HttpCallEvidence::class;
33  protected $httpCallDataType = '';
34  protected $httpCookieType = HttpCookieEvidence::class;
35  protected $httpCookieDataType = '';
36
37  /**
38   * @param DestinationNotCrawlableEvidence
39   */
40  public function setDestinationNotCrawlable(DestinationNotCrawlableEvidence $destinationNotCrawlable)
41  {
42    $this->destinationNotCrawlable = $destinationNotCrawlable;
43  }
44  /**
45   * @return DestinationNotCrawlableEvidence
46   */
47  public function getDestinationNotCrawlable()
48  {
49    return $this->destinationNotCrawlable;
50  }
51  /**
52   * @param DestinationNotWorkingEvidence
53   */
54  public function setDestinationNotWorking(DestinationNotWorkingEvidence $destinationNotWorking)
55  {
56    $this->destinationNotWorking = $destinationNotWorking;
57  }
58  /**
59   * @return DestinationNotWorkingEvidence
60   */
61  public function getDestinationNotWorking()
62  {
63    return $this->destinationNotWorking;
64  }
65  /**
66   * @param DestinationUrlEvidence
67   */
68  public function setDestinationUrl(DestinationUrlEvidence $destinationUrl)
69  {
70    $this->destinationUrl = $destinationUrl;
71  }
72  /**
73   * @return DestinationUrlEvidence
74   */
75  public function getDestinationUrl()
76  {
77    return $this->destinationUrl;
78  }
79  /**
80   * @param DomainCallEvidence
81   */
82  public function setDomainCall(DomainCallEvidence $domainCall)
83  {
84    $this->domainCall = $domainCall;
85  }
86  /**
87   * @return DomainCallEvidence
88   */
89  public function getDomainCall()
90  {
91    return $this->domainCall;
92  }
93  /**
94   * @param DownloadSizeEvidence
95   */
96  public function setDownloadSize(DownloadSizeEvidence $downloadSize)
97  {
98    $this->downloadSize = $downloadSize;
99  }
100  /**
101   * @return DownloadSizeEvidence
102   */
103  public function getDownloadSize()
104  {
105    return $this->downloadSize;
106  }
107  /**
108   * @param HttpCallEvidence
109   */
110  public function setHttpCall(HttpCallEvidence $httpCall)
111  {
112    $this->httpCall = $httpCall;
113  }
114  /**
115   * @return HttpCallEvidence
116   */
117  public function getHttpCall()
118  {
119    return $this->httpCall;
120  }
121  /**
122   * @param HttpCookieEvidence
123   */
124  public function setHttpCookie(HttpCookieEvidence $httpCookie)
125  {
126    $this->httpCookie = $httpCookie;
127  }
128  /**
129   * @return HttpCookieEvidence
130   */
131  public function getHttpCookie()
132  {
133    return $this->httpCookie;
134  }
135}
136
137// Adding a class alias for backwards compatibility with the previous class name.
138class_alias(PolicyTopicEvidence::class, 'Google_Service_RealTimeBidding_PolicyTopicEvidence');
139