Google_Template
The WordPress Core Google Template class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_FusiontablesService.php
- class Google_Template extends Google_Model {
- public $automaticColumnNames;
- public $body;
- public $kind;
- public $name;
- public $tableId;
- public $templateId;
- public function setAutomaticColumnNames(/** array(Google_string) */ $automaticColumnNames) {
- $this->assertIsArray($automaticColumnNames, 'Google_string', __METHOD__);
- $this->automaticColumnNames = $automaticColumnNames;
- }
- public function getAutomaticColumnNames() {
- return $this->automaticColumnNames;
- }
- public function setBody( $body) {
- $this->body = $body;
- }
- public function getBody() {
- return $this->body;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setName( $name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setTableId( $tableId) {
- $this->tableId = $tableId;
- }
- public function getTableId() {
- return $this->tableId;
- }
- public function setTemplateId( $templateId) {
- $this->templateId = $templateId;
- }
- public function getTemplateId() {
- return $this->templateId;
- }
- }