+ /**
+ * Set class
+ *
+ * @param string $class
+ *
+ * @return Snippet
+ */
+ public function setClass(?string $class): Snippet {
+ $this->class = $class;
+
+ return $this;
+ }
+
+ /**
+ * Get class
+ *
+ * @return string
+ */
+ public function getClass(): ?string {
+ return $this->class;
+ }
+
+ /**
+ * Set short
+ *
+ * @param string $short
+ *
+ * @return Snippet
+ */
+ public function setShort(?string $short): Snippet {
+ $this->short = $short;
+
+ return $this;
+ }
+
+ /**
+ * Get short
+ *
+ * @return string
+ */
+ public function getShort(): ?string {
+ return $this->short;
+ }
+
+ /**
+ * Set rate
+ *
+ * @param int $rate
+ *
+ * @return Snippet
+ */
+ public function setRate(?int $rate): Snippet {
+ $this->rate = $rate;
+
+ return $this;
+ }
+
+ /**
+ * Get rate
+ *
+ * @return int
+ */
+ public function getRate(): ?int {
+ return $this->rate;
+ }
+
+ /**
+ * Set hat
+ *
+ * @param bool $hat
+ *
+ * @return User
+ */
+ public function setHat(?bool $hat): Snippet {
+ $this->hat = $hat;
+
+ return $this;
+ }
+
+ /**
+ * Get hat
+ *
+ * @return bool
+ */
+ public function getHat(): ?bool {
+ return $this->hat;
+ }
+ /**
+ * Set contact
+ *
+ * @param string $contact
+ *
+ * @return Snippet
+ */
+ public function setContact(?string $contact): Snippet {
+ $this->contact = $contact;
+
+ return $this;
+ }
+
+ /**
+ * Get contact
+ *
+ * @return string
+ */
+ public function getContact(): ?string {
+ return $this->contact;
+ }
+
+ /**
+ * Set donate
+ *
+ * @param string $donate
+ *
+ * @return Snippet
+ */
+ public function setDonate(?string $donate): Snippet {
+ $this->donate = $donate;
+
+ return $this;
+ }
+
+ /**
+ * Get donate
+ *
+ * @return string
+ */
+ public function getDonate(): ?string {
+ return $this->donate;
+ }
+
+ /**
+ * Set link
+ *
+ * @param string $link
+ *
+ * @return Snippet
+ */
+ public function setLink(?string $link): Snippet {
+ $this->link = $link;
+
+ return $this;
+ }
+
+ /**
+ * Get link
+ *
+ * @return string
+ */
+ public function getLink(): ?string {
+ return $this->link;
+ }
+
+ /**
+ * Set profile
+ *
+ * @param string $profile
+ *
+ * @return Snippet
+ */
+ public function setProfile(?string $profile): Snippet {
+ $this->profile = $profile;
+
+ return $this;
+ }
+
+ /**
+ * Get profile
+ *
+ * @return string
+ */
+ public function getProfile(): ?string {
+ return $this->profile;
+ }
+