Google_TableList
The Google Pagespeed Insights Google TableList class.
Defined (2)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BigqueryService.php
- class Google_TableList extends Google_Model {
- public $nextPageToken;
- protected $__tablesType = 'Google_TableListTables';
- protected $__tablesDataType = 'array';
- public $tables;
- public $kind;
- public $etag;
- public $totalItems;
- public function setNextPageToken($nextPageToken) {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken() {
- return $this->nextPageToken;
- }
- public function setTables(/** array(Google_TableListTables) */ $tables) {
- $this->assertIsArray($tables, 'Google_TableListTables', __METHOD__);
- $this->tables = $tables;
- }
- public function getTables() {
- return $this->tables;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setEtag($etag) {
- $this->etag = $etag;
- }
- public function getEtag() {
- return $this->etag;
- }
- public function setTotalItems($totalItems) {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems() {
- return $this->totalItems;
- }
- }
- /google-api/src/contrib/Google_FusiontablesService.php
- class Google_TableList extends Google_Model {
- protected $__itemsType = 'Google_Table';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public $nextPageToken;
- public function setItems(/** array(Google_Table) */ $items) {
- $this->assertIsArray($items, 'Google_Table', __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;
- }
- }