. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\Core\Templates\Entities; use Espo\Core\Field\Address; use Espo\Core\Field\EmailAddressGroup; use Espo\Core\Field\PhoneNumberGroup; use Espo\Core\ORM\Entity; class Company extends Entity { public const TEMPLATE_TYPE = 'Company'; public function getEmailAddressGroup(): EmailAddressGroup { /** @var EmailAddressGroup */ return $this->getValueObject('emailAddress'); } public function getPhoneNumberGroup(): PhoneNumberGroup { /** @var PhoneNumberGroup */ return $this->getValueObject('phoneNumber'); } public function setEmailAddressGroup(EmailAddressGroup $group): static { return $this->setValueObject('emailAddress', $group); } public function setPhoneNumberGroup(PhoneNumberGroup $group): static { return $this->setValueObject('phoneNumber', $group); } public function getBillingAddress(): Address { /** @var Address */ return $this->getValueObject('billingAddress'); } public function setBillingAddress(Address $address): static { return $this->setValueObject('billingAddress', $address); } public function getShippingAddress(): Address { /** @var Address */ return $this->getValueObject('shippingAddress'); } public function setShippingAddress(Address $address): static { return $this->setValueObject('shippingAddress', $address); } }