Google_Webproperties
The Google Pagespeed Insights Google Webproperties class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_AnalyticsService.php
- class Google_Webproperties extends Google_Model {
- protected $__itemsType = 'Google_Webproperty';
- protected $__itemsDataType = 'array';
- public $items;
- public $itemsPerPage;
- public $kind;
- public $nextLink;
- public $previousLink;
- public $startIndex;
- public $totalResults;
- public $username;
- public function setItems(/** array(Google_Webproperty) */ $items) {
- $this->assertIsArray($items, 'Google_Webproperty', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- 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 setStartIndex($startIndex) {
- $this->startIndex = $startIndex;
- }
- public function getStartIndex() {
- return $this->startIndex;
- }
- public function setTotalResults($totalResults) {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults() {
- return $this->totalResults;
- }
- public function setUsername($username) {
- $this->username = $username;
- }
- public function getUsername() {
- return $this->username;
- }
- }