Google_Sqlresponse
The Google Pagespeed Insights Google Sqlresponse class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_FusiontablesService.php
- class Google_Sqlresponse extends Google_Model {
- public $columns;
- public $kind;
- public $rows;
- public function setColumns(/** array(Google_string) */ $columns) {
- $this->assertIsArray($columns, 'Google_string', __METHOD__);
- $this->columns = $columns;
- }
- public function getColumns() {
- return $this->columns;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setRows(/** array(Google_object) */ $rows) {
- $this->assertIsArray($rows, 'Google_object', __METHOD__);
- $this->rows = $rows;
- }
- public function getRows() {
- return $this->rows;
- }
- }