+       /**
+        * Set class
+        *
+        * @param string $class
+        *
+        * @return Snippet
+        */
+       public function setClass($class) {
+               $this->class = $class;
+
+               return $this;
+       }
+
+       /**
+        * Get class
+        *
+        * @return string
+        */
+       public function getClass() {
+               return $this->class;
+       }
+
+       /**
+        * Set contact
+        *
+        * @param string $contact
+        *
+        * @return Snippet
+        */
+       public function setContact($contact) {
+               $this->contact = $contact;
+
+               return $this;
+       }
+
+       /**
+        * Get contact
+        *
+        * @return string
+        */
+       public function getContact() {
+               return $this->contact;
+       }
+
+       /**
+        * Set donate
+        *
+        * @param string $donate
+        *
+        * @return Snippet
+        */
+       public function setDonate($donate) {
+               $this->donate = $donate;
+
+               return $this;
+       }
+
+       /**
+        * Get donate
+        *
+        * @return string
+        */
+       public function getDonate() {
+               return $this->donate;
+       }
+
+       /**
+        * Set link
+        *
+        * @param string $link
+        *
+        * @return Snippet
+        */
+       public function setLink($link) {
+               $this->link = $link;
+
+               return $this;
+       }
+
+       /**
+        * Get link
+        *
+        * @return string
+        */
+       public function getLink() {
+               return $this->link;
+       }
+
+       /**
+        * Set profile
+        *
+        * @param string $profile
+        *
+        * @return Snippet
+        */
+       public function setProfile($profile) {
+               $this->profile = $profile;
+
+               return $this;
+       }
+
+       /**
+        * Get profile
+        *
+        * @return string
+        */
+       public function getProfile() {
+               return $this->profile;
+       }
+