Viewing file: BidMetricsRow.php (4.55 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */
class Google_Service_AdExchangeBuyerII_BidMetricsRow extends Google_Model { protected $bidsType = 'Google_Service_AdExchangeBuyerII_MetricValue'; protected $bidsDataType = ''; protected $bidsInAuctionType = 'Google_Service_AdExchangeBuyerII_MetricValue'; protected $bidsInAuctionDataType = ''; protected $billedImpressionsType = 'Google_Service_AdExchangeBuyerII_MetricValue'; protected $billedImpressionsDataType = ''; protected $impressionsWonType = 'Google_Service_AdExchangeBuyerII_MetricValue'; protected $impressionsWonDataType = ''; protected $measurableImpressionsType = 'Google_Service_AdExchangeBuyerII_MetricValue'; protected $measurableImpressionsDataType = ''; protected $reachedQueriesType = 'Google_Service_AdExchangeBuyerII_MetricValue'; protected $reachedQueriesDataType = ''; protected $rowDimensionsType = 'Google_Service_AdExchangeBuyerII_RowDimensions'; protected $rowDimensionsDataType = ''; protected $viewableImpressionsType = 'Google_Service_AdExchangeBuyerII_MetricValue'; protected $viewableImpressionsDataType = '';
/** * @param Google_Service_AdExchangeBuyerII_MetricValue */ public function setBids(Google_Service_AdExchangeBuyerII_MetricValue $bids) { $this->bids = $bids; } /** * @return Google_Service_AdExchangeBuyerII_MetricValue */ public function getBids() { return $this->bids; } /** * @param Google_Service_AdExchangeBuyerII_MetricValue */ public function setBidsInAuction(Google_Service_AdExchangeBuyerII_MetricValue $bidsInAuction) { $this->bidsInAuction = $bidsInAuction; } /** * @return Google_Service_AdExchangeBuyerII_MetricValue */ public function getBidsInAuction() { return $this->bidsInAuction; } /** * @param Google_Service_AdExchangeBuyerII_MetricValue */ public function setBilledImpressions(Google_Service_AdExchangeBuyerII_MetricValue $billedImpressions) { $this->billedImpressions = $billedImpressions; } /** * @return Google_Service_AdExchangeBuyerII_MetricValue */ public function getBilledImpressions() { return $this->billedImpressions; } /** * @param Google_Service_AdExchangeBuyerII_MetricValue */ public function setImpressionsWon(Google_Service_AdExchangeBuyerII_MetricValue $impressionsWon) { $this->impressionsWon = $impressionsWon; } /** * @return Google_Service_AdExchangeBuyerII_MetricValue */ public function getImpressionsWon() { return $this->impressionsWon; } /** * @param Google_Service_AdExchangeBuyerII_MetricValue */ public function setMeasurableImpressions(Google_Service_AdExchangeBuyerII_MetricValue $measurableImpressions) { $this->measurableImpressions = $measurableImpressions; } /** * @return Google_Service_AdExchangeBuyerII_MetricValue */ public function getMeasurableImpressions() { return $this->measurableImpressions; } /** * @param Google_Service_AdExchangeBuyerII_MetricValue */ public function setReachedQueries(Google_Service_AdExchangeBuyerII_MetricValue $reachedQueries) { $this->reachedQueries = $reachedQueries; } /** * @return Google_Service_AdExchangeBuyerII_MetricValue */ public function getReachedQueries() { return $this->reachedQueries; } /** * @param Google_Service_AdExchangeBuyerII_RowDimensions */ public function setRowDimensions(Google_Service_AdExchangeBuyerII_RowDimensions $rowDimensions) { $this->rowDimensions = $rowDimensions; } /** * @return Google_Service_AdExchangeBuyerII_RowDimensions */ public function getRowDimensions() { return $this->rowDimensions; } /** * @param Google_Service_AdExchangeBuyerII_MetricValue */ public function setViewableImpressions(Google_Service_AdExchangeBuyerII_MetricValue $viewableImpressions) { $this->viewableImpressions = $viewableImpressions; } /** * @return Google_Service_AdExchangeBuyerII_MetricValue */ public function getViewableImpressions() { return $this->viewableImpressions; } }
|