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\AuthorizedBuyersMarketplace;
19
20class RtbMetrics extends \Google\Model
21{
22  /**
23   * @var string
24   */
25  public $adImpressions7Days;
26  public $bidRate7Days;
27  /**
28   * @var string
29   */
30  public $bidRequests7Days;
31  /**
32   * @var string
33   */
34  public $bids7Days;
35  public $filteredBidRate7Days;
36  public $mustBidRateCurrentMonth;
37
38  /**
39   * @param string
40   */
41  public function setAdImpressions7Days($adImpressions7Days)
42  {
43    $this->adImpressions7Days = $adImpressions7Days;
44  }
45  /**
46   * @return string
47   */
48  public function getAdImpressions7Days()
49  {
50    return $this->adImpressions7Days;
51  }
52  public function setBidRate7Days($bidRate7Days)
53  {
54    $this->bidRate7Days = $bidRate7Days;
55  }
56  public function getBidRate7Days()
57  {
58    return $this->bidRate7Days;
59  }
60  /**
61   * @param string
62   */
63  public function setBidRequests7Days($bidRequests7Days)
64  {
65    $this->bidRequests7Days = $bidRequests7Days;
66  }
67  /**
68   * @return string
69   */
70  public function getBidRequests7Days()
71  {
72    return $this->bidRequests7Days;
73  }
74  /**
75   * @param string
76   */
77  public function setBids7Days($bids7Days)
78  {
79    $this->bids7Days = $bids7Days;
80  }
81  /**
82   * @return string
83   */
84  public function getBids7Days()
85  {
86    return $this->bids7Days;
87  }
88  public function setFilteredBidRate7Days($filteredBidRate7Days)
89  {
90    $this->filteredBidRate7Days = $filteredBidRate7Days;
91  }
92  public function getFilteredBidRate7Days()
93  {
94    return $this->filteredBidRate7Days;
95  }
96  public function setMustBidRateCurrentMonth($mustBidRateCurrentMonth)
97  {
98    $this->mustBidRateCurrentMonth = $mustBidRateCurrentMonth;
99  }
100  public function getMustBidRateCurrentMonth()
101  {
102    return $this->mustBidRateCurrentMonth;
103  }
104}
105
106// Adding a class alias for backwards compatibility with the previous class name.
107class_alias(RtbMetrics::class, 'Google_Service_AuthorizedBuyersMarketplace_RtbMetrics');
108