impressionCount = $impressionCount; } /** * @return MetricValue */ public function getImpressionCount() { return $this->impressionCount; } /** * The values of all dimensions associated with metric values in this row. * * @param RowDimensions $rowDimensions */ public function setRowDimensions(RowDimensions $rowDimensions) { $this->rowDimensions = $rowDimensions; } /** * @return RowDimensions */ public function getRowDimensions() { return $this->rowDimensions; } /** * The status specifying why the bid responses were considered to have no * applicable bids. * * Accepted values: STATUS_UNSPECIFIED, RESPONSES_WITHOUT_BIDS, * RESPONSES_WITHOUT_BIDS_FOR_ACCOUNT, RESPONSES_WITHOUT_BIDS_FOR_DEAL * * @param self::STATUS_* $status */ public function setStatus($status) { $this->status = $status; } /** * @return self::STATUS_* */ public function getStatus() { return $this->status; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BidResponseWithoutBidsStatusRow::class, 'Google_Service_AdExchangeBuyerII_BidResponseWithoutBidsStatusRow');