+       /**
+        * Set score
+        *
+        * @param float $score
+        *
+        * @return Application
+        */
+       public function setScore($score) {
+               $this->score = $score;
+
+               return $this;
+       }
+
+       /**
+        * Get score
+        *
+        * @return float
+        */
+       public function getScore() {
+               return $this->score;
+       }
+
+       /**
+        * Set canceled
+        *
+        * @param \DateTime $canceled
+        *
+        * @return Application
+        */
+       public function setCanceled($canceled) {
+               $this->canceled = $canceled;
+
+               return $this;
+       }
+
+       /**
+        * Get canceled
+        *
+        * @return \DateTime
+        */
+       public function getCanceled() {
+               return $this->canceled;
+       }
+