Google_ResultTable
The Google Pagespeed Insights Google ResultTable class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_YouTubeAnalyticsService.php
- class Google_ResultTable extends Google_Model {
- protected $__columnHeadersType = 'Google_ResultTableColumnHeaders';
- protected $__columnHeadersDataType = 'array';
- public $columnHeaders;
- public $kind;
- public $rows;
- public function setColumnHeaders(/** array(Google_ResultTableColumnHeaders) */ $columnHeaders) {
- $this->assertIsArray($columnHeaders, 'Google_ResultTableColumnHeaders', __METHOD__);
- $this->columnHeaders = $columnHeaders;
- }
- public function getColumnHeaders() {
- return $this->columnHeaders;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setRows(/** array(Google_object) */ $rows) {
- $this->assertIsArray($rows, 'Google_object', __METHOD__);
- $this->rows = $rows;
- }
- public function getRows() {
- return $this->rows;
- }
- }