createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * The resource name of the row. Row names have the form * `tables/{table}/rows/{row}`. The name is ignored when creating a row. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Time when the row was last updated. * * @param string $updateTime */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } /** * The values of the row. This is a map of column key to value. Key is user * entered name(default) or the internal column id based on the view in the * request. * * @param array[] $values */ public function setValues($values) { $this->values = $values; } /** * @return array[] */ public function getValues() { return $this->values; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Row::class, 'Google_Service_Area120Tables_Row');