type = $type; $this->referenceId = $referenceId; $this->name = $name; $this->contact = $contact; $this->email = $email; $this->designation = $designation; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return int */ public function getReferenceId(): int { return $this->referenceId; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return null|string */ public function getContact(): ?string { return $this->contact; } /** * @return null|string */ public function getEmail(): ?string { return $this->email; } /** * @return null|string */ public function getDesignation(): ?string { return $this->designation; } }