owner_id = $owner_id; $this->owner_type = $owner_type; $this->document_type = $document_type; $this->reference = $reference; $this->status = $status; $this->approved_by = $approved_by; $this->issued_date = $issued_date; $this->expired_date = $expired_date; $this->approved_date = $approved_date; } /** * @return int|null */ public function getOwnerId(): ?int { return $this->owner_id; } /** * @return int|null */ public function getOwnerType(): ?int { return $this->owner_type; } /** * @return string|null */ public function getDocumentType(): ?string { return $this->document_type; } /** * @return string|null */ public function getReference(): ?string { return $this->reference; } /** * @return int|null */ public function getStatus(): ?int { return $this->status; } /** * @return int|null */ public function getApprovedBy(): ?int { return $this->approved_by; } /** * @return timestamp|null */ public function getIssuedDate(): ?timestamp { return $this->issued_date; } /** * @return timestamp|null */ public function getExpiredDate(): ?timestamp { return $this->expired_date; } /** * @return timestamp|null */ public function getApprovedDate(): ?timestamp { return $this->approved_date; } }