Google_GaData
The Google Pagespeed Insights Google GaData class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_AnalyticsService.php
- class Google_GaData extends Google_Model {
- protected $__columnHeadersType = 'Google_GaDataColumnHeaders';
- protected $__columnHeadersDataType = 'array';
- public $columnHeaders;
- public $containsSampledData;
- public $id;
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- protected $__profileInfoType = 'Google_GaDataProfileInfo';
- protected $__profileInfoDataType = '';
- public $profileInfo;
- protected $__queryType = 'Google_GaDataQuery';
- protected $__queryDataType = '';
- public $query;
- public $rows;
- public $selfLink;
- public $totalResults;
- public $totalsForAllResults;
- public function setColumnHeaders(/** array(Google_GaDataColumnHeaders) */ $columnHeaders) {
- $this->assertIsArray($columnHeaders, 'Google_GaDataColumnHeaders', __METHOD__);
- $this->columnHeaders = $columnHeaders;
- }
- public function getColumnHeaders() {
- return $this->columnHeaders;
- }
- public function setContainsSampledData($containsSampledData) {
- $this->containsSampledData = $containsSampledData;
- }
- public function getContainsSampledData() {
- return $this->containsSampledData;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setItemsPerPage($itemsPerPage) {
- $this->itemsPerPage = $itemsPerPage;
- }
- public function getItemsPerPage() {
- return $this->itemsPerPage;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setNextLink($nextLink) {
- $this->nextLink = $nextLink;
- }
- public function getNextLink() {
- return $this->nextLink;
- }
- public function setPreviousLink($previousLink) {
- $this->previousLink = $previousLink;
- }
- public function getPreviousLink() {
- return $this->previousLink;
- }
- public function setProfileInfo(Google_GaDataProfileInfo $profileInfo) {
- $this->profileInfo = $profileInfo;
- }
- public function getProfileInfo() {
- return $this->profileInfo;
- }
- public function setQuery(Google_GaDataQuery $query) {
- $this->query = $query;
- }
- public function getQuery() {
- return $this->query;
- }
- public function setRows(/** array(Google_string) */ $rows) {
- $this->assertIsArray($rows, 'Google_string', __METHOD__);
- $this->rows = $rows;
- }
- public function getRows() {
- return $this->rows;
- }
- public function setSelfLink($selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- public function setTotalResults($totalResults) {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults() {
- return $this->totalResults;
- }
- public function setTotalsForAllResults($totalsForAllResults) {
- $this->totalsForAllResults = $totalsForAllResults;
- }
- public function getTotalsForAllResults() {
- return $this->totalsForAllResults;
- }
- }