country_id = $country_id; $this->company_id = $company_id; $this->reference = $reference; $this->phone = $phone; $this->email = $email; $this->wechat_id = $wechat_id; } /** * @return int|null */ public function getCountryId(): ?int { return $this->country_id; } /** * @return int|null */ public function getCompanyId(): ?int { return $this->company_id; } /** * @return string|null */ public function getReference(): ?string { return $this->reference; } /** * @return string|null */ public function getPhone(): ?string { return $this->phone; } /** * @return string|null */ public function getEmail(): ?string { return $this->email; } /** * @return string|null */ public function getWeChatId(): ?string { return $this->wechat_id; } }