Google_StyleSettingList
The Google Pagespeed Insights Google StyleSettingList class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_FusiontablesService.php
- class Google_StyleSettingList extends Google_Model {
- protected $__itemsType = 'Google_StyleSetting';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public $nextPageToken;
- public $totalItems;
- public function setItems(/** array(Google_StyleSetting) */ $items) {
- $this->assertIsArray($items, 'Google_StyleSetting', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setNextPageToken($nextPageToken) {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken() {
- return $this->nextPageToken;
- }
- public function setTotalItems($totalItems) {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems() {
- return $this->totalItems;
- }
- }