Google_TableSchema
The Goolytics - Simple Google Analytics Google TableSchema class.
Defined (1)
The class is defined in the following location(s).
- /inc/google-api-php-client/src/contrib/Google_BigqueryService.php
- class Google_TableSchema extends Google_Model {
- protected $__fieldsType = 'Google_TableFieldSchema';
- protected $__fieldsDataType = 'array';
- public $fields;
- public function setFields(/** array(Google_TableFieldSchema) */ $fields) {
- $this->assertIsArray($fields, 'Google_TableFieldSchema', __METHOD__);
- $this->fields = $fields;
- }
- public function getFields() {
- return $this->fields;
- }
- }