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