[e3d4e0a] | 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 |
|
---|
| 18 | namespace Google\Service\Merchant;
|
---|
| 19 |
|
---|
| 20 | class CompetitiveVisibilityBenchmarkView extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | public $categoryBenchmarkVisibilityTrend;
|
---|
| 23 | protected $dateType = Date::class;
|
---|
| 24 | protected $dateDataType = '';
|
---|
| 25 | /**
|
---|
| 26 | * @var string
|
---|
| 27 | */
|
---|
| 28 | public $reportCategoryId;
|
---|
| 29 | /**
|
---|
| 30 | * @var string
|
---|
| 31 | */
|
---|
| 32 | public $reportCountryCode;
|
---|
| 33 | /**
|
---|
| 34 | * @var string
|
---|
| 35 | */
|
---|
| 36 | public $trafficSource;
|
---|
| 37 | public $yourDomainVisibilityTrend;
|
---|
| 38 |
|
---|
| 39 | public function setCategoryBenchmarkVisibilityTrend($categoryBenchmarkVisibilityTrend)
|
---|
| 40 | {
|
---|
| 41 | $this->categoryBenchmarkVisibilityTrend = $categoryBenchmarkVisibilityTrend;
|
---|
| 42 | }
|
---|
| 43 | public function getCategoryBenchmarkVisibilityTrend()
|
---|
| 44 | {
|
---|
| 45 | return $this->categoryBenchmarkVisibilityTrend;
|
---|
| 46 | }
|
---|
| 47 | /**
|
---|
| 48 | * @param Date
|
---|
| 49 | */
|
---|
| 50 | public function setDate(Date $date)
|
---|
| 51 | {
|
---|
| 52 | $this->date = $date;
|
---|
| 53 | }
|
---|
| 54 | /**
|
---|
| 55 | * @return Date
|
---|
| 56 | */
|
---|
| 57 | public function getDate()
|
---|
| 58 | {
|
---|
| 59 | return $this->date;
|
---|
| 60 | }
|
---|
| 61 | /**
|
---|
| 62 | * @param string
|
---|
| 63 | */
|
---|
| 64 | public function setReportCategoryId($reportCategoryId)
|
---|
| 65 | {
|
---|
| 66 | $this->reportCategoryId = $reportCategoryId;
|
---|
| 67 | }
|
---|
| 68 | /**
|
---|
| 69 | * @return string
|
---|
| 70 | */
|
---|
| 71 | public function getReportCategoryId()
|
---|
| 72 | {
|
---|
| 73 | return $this->reportCategoryId;
|
---|
| 74 | }
|
---|
| 75 | /**
|
---|
| 76 | * @param string
|
---|
| 77 | */
|
---|
| 78 | public function setReportCountryCode($reportCountryCode)
|
---|
| 79 | {
|
---|
| 80 | $this->reportCountryCode = $reportCountryCode;
|
---|
| 81 | }
|
---|
| 82 | /**
|
---|
| 83 | * @return string
|
---|
| 84 | */
|
---|
| 85 | public function getReportCountryCode()
|
---|
| 86 | {
|
---|
| 87 | return $this->reportCountryCode;
|
---|
| 88 | }
|
---|
| 89 | /**
|
---|
| 90 | * @param string
|
---|
| 91 | */
|
---|
| 92 | public function setTrafficSource($trafficSource)
|
---|
| 93 | {
|
---|
| 94 | $this->trafficSource = $trafficSource;
|
---|
| 95 | }
|
---|
| 96 | /**
|
---|
| 97 | * @return string
|
---|
| 98 | */
|
---|
| 99 | public function getTrafficSource()
|
---|
| 100 | {
|
---|
| 101 | return $this->trafficSource;
|
---|
| 102 | }
|
---|
| 103 | public function setYourDomainVisibilityTrend($yourDomainVisibilityTrend)
|
---|
| 104 | {
|
---|
| 105 | $this->yourDomainVisibilityTrend = $yourDomainVisibilityTrend;
|
---|
| 106 | }
|
---|
| 107 | public function getYourDomainVisibilityTrend()
|
---|
| 108 | {
|
---|
| 109 | return $this->yourDomainVisibilityTrend;
|
---|
| 110 | }
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 114 | class_alias(CompetitiveVisibilityBenchmarkView::class, 'Google_Service_Merchant_CompetitiveVisibilityBenchmarkView');
|
---|