Google_Layersummaries
The WordPress Core Google Layersummaries class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_BooksService.php
- class Google_Layersummaries extends Google_Model {
- protected $__itemsType = 'Google_Layersummary';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public $totalItems;
- public function setItems(/** array(Google_Layersummary) */ $items) {
- $this->assertIsArray($items, 'Google_Layersummary', __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 setTotalItems( $totalItems) {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems() {
- return $this->totalItems;
- }
- }