*/
private $longitude;
+ /**
+ * @var boolean
+ */
+ private $hotspot;
+
/**
* @var \DateTime
*/
return $this->longitude;
}
+ /**
+ * Set hotspot
+ *
+ * @param boolean $hotspot
+ *
+ * @return Session
+ */
+ public function setHotspot($hotspot) {
+ $this->hotspot = $hotspot;
+
+ return $this;
+ }
+
+ /**
+ * Get hotspot
+ *
+ * @return boolean
+ */
+ public function getHotspot() {
+ return $this->hotspot;
+ }
+
/**
* Set created
*