Google_AdsenseReportsGenerateResponse
The Google Books Importer Google AdsenseReportsGenerateResponse class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_AdSenseService.php
- class Google_AdsenseReportsGenerateResponse extends Google_Model {
- public $averages;
- protected $__headersType = 'Google_AdsenseReportsGenerateResponseHeaders';
- protected $__headersDataType = 'array';
- public $headers;
- public $kind;
- public $rows;
- public $totalMatchedRows;
- public $totals;
- public $warnings;
- public function setAverages(/** array(Google_string) */ $averages) {
- $this->assertIsArray($averages, 'Google_string', __METHOD__);
- $this->averages = $averages;
- }
- public function getAverages() {
- return $this->averages;
- }
- public function setHeaders(/** array(Google_AdsenseReportsGenerateResponseHeaders) */ $headers) {
- $this->assertIsArray($headers, 'Google_AdsenseReportsGenerateResponseHeaders', __METHOD__);
- $this->headers = $headers;
- }
- public function getHeaders() {
- return $this->headers;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setRows(/** array(Google_string) */ $rows) {
- $this->assertIsArray($rows, 'Google_string', __METHOD__);
- $this->rows = $rows;
- }
- public function getRows() {
- return $this->rows;
- }
- public function setTotalMatchedRows( $totalMatchedRows) {
- $this->totalMatchedRows = $totalMatchedRows;
- }
- public function getTotalMatchedRows() {
- return $this->totalMatchedRows;
- }
- public function setTotals(/** array(Google_string) */ $totals) {
- $this->assertIsArray($totals, 'Google_string', __METHOD__);
- $this->totals = $totals;
- }
- public function getTotals() {
- return $this->totals;
- }
- public function setWarnings(/** array(Google_string) */ $warnings) {
- $this->assertIsArray($warnings, 'Google_string', __METHOD__);
- $this->warnings = $warnings;
- }
- public function getWarnings() {
- return $this->warnings;
- }
- }