name = $name; $this->reference = $reference; $this->type = $type; $this->status = $status; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getReference(): string { return $this->reference; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return int */ public function getStatus(): int { return $this->status; } }