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 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; } }