source: vendor/google/apiclient-services/src/Merchant/CompetitiveVisibilityTopMerchantView.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload new project files

  • Property mode set to 100644
File size: 3.5 KB
Line 
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\Merchant;
19
20class CompetitiveVisibilityTopMerchantView extends \Google\Model
21{
22 public $adsOrganicRatio;
23 protected $dateType = Date::class;
24 protected $dateDataType = '';
25 /**
26 * @var string
27 */
28 public $domain;
29 public $higherPositionRate;
30 /**
31 * @var bool
32 */
33 public $isYourDomain;
34 public $pageOverlapRate;
35 /**
36 * @var string
37 */
38 public $rank;
39 /**
40 * @var string
41 */
42 public $reportCategoryId;
43 /**
44 * @var string
45 */
46 public $reportCountryCode;
47 /**
48 * @var string
49 */
50 public $trafficSource;
51
52 public function setAdsOrganicRatio($adsOrganicRatio)
53 {
54 $this->adsOrganicRatio = $adsOrganicRatio;
55 }
56 public function getAdsOrganicRatio()
57 {
58 return $this->adsOrganicRatio;
59 }
60 /**
61 * @param Date
62 */
63 public function setDate(Date $date)
64 {
65 $this->date = $date;
66 }
67 /**
68 * @return Date
69 */
70 public function getDate()
71 {
72 return $this->date;
73 }
74 /**
75 * @param string
76 */
77 public function setDomain($domain)
78 {
79 $this->domain = $domain;
80 }
81 /**
82 * @return string
83 */
84 public function getDomain()
85 {
86 return $this->domain;
87 }
88 public function setHigherPositionRate($higherPositionRate)
89 {
90 $this->higherPositionRate = $higherPositionRate;
91 }
92 public function getHigherPositionRate()
93 {
94 return $this->higherPositionRate;
95 }
96 /**
97 * @param bool
98 */
99 public function setIsYourDomain($isYourDomain)
100 {
101 $this->isYourDomain = $isYourDomain;
102 }
103 /**
104 * @return bool
105 */
106 public function getIsYourDomain()
107 {
108 return $this->isYourDomain;
109 }
110 public function setPageOverlapRate($pageOverlapRate)
111 {
112 $this->pageOverlapRate = $pageOverlapRate;
113 }
114 public function getPageOverlapRate()
115 {
116 return $this->pageOverlapRate;
117 }
118 /**
119 * @param string
120 */
121 public function setRank($rank)
122 {
123 $this->rank = $rank;
124 }
125 /**
126 * @return string
127 */
128 public function getRank()
129 {
130 return $this->rank;
131 }
132 /**
133 * @param string
134 */
135 public function setReportCategoryId($reportCategoryId)
136 {
137 $this->reportCategoryId = $reportCategoryId;
138 }
139 /**
140 * @return string
141 */
142 public function getReportCategoryId()
143 {
144 return $this->reportCategoryId;
145 }
146 /**
147 * @param string
148 */
149 public function setReportCountryCode($reportCountryCode)
150 {
151 $this->reportCountryCode = $reportCountryCode;
152 }
153 /**
154 * @return string
155 */
156 public function getReportCountryCode()
157 {
158 return $this->reportCountryCode;
159 }
160 /**
161 * @param string
162 */
163 public function setTrafficSource($trafficSource)
164 {
165 $this->trafficSource = $trafficSource;
166 }
167 /**
168 * @return string
169 */
170 public function getTrafficSource()
171 {
172 return $this->trafficSource;
173 }
174}
175
176// Adding a class alias for backwards compatibility with the previous class name.
177class_alias(CompetitiveVisibilityTopMerchantView::class, 'Google_Service_Merchant_CompetitiveVisibilityTopMerchantView');
Note: See TracBrowser for help on using the repository browser.