id; } /** * Set type * * @param int $type Type * * @return void * * @since 1.0.0 */ public function setType(int $type) : void { $this->type = $type; } /** * Get type * * @return int * * @since 1.0.0 */ public function getType() : int { return $this->type; } /** * Set order * * @param int $order Type * * @return void * * @since 1.0.0 */ public function setOrder(int $order) : void { $this->order = $order; } /** * Get order * * @return int * * @since 1.0.0 */ public function getOrder() : int { return $this->order; } /** * Set subtype * * @param int $subtype Subtype * * @return void * * @since 1.0.0 */ public function setSubtype(int $subtype) : void { $this->subtype = $subtype; } /** * Get subtype * * @return int * * @since 1.0.0 */ public function getSubtype() : int { return $this->subtype; } /** * Get content * * @return string * * @since 1.0.0 */ public function getContent() : string { return $this->content; } /** * Set content * * @param string $content Content * * @return void * * @since 1.0.0 */ public function setContent(string $content) : void { $this->content = $content; } }