") */ public $phones; /** * E-mail. * * @var string * * @Serializer\Groups({"get"}) * @Serializer\SerializedName("email") * @Serializer\Type("string") */ public $email; /** * Данные контрагента. * * @var Contragent * * @Serializer\Groups({"get"}) * @Serializer\SerializedName("contragent") * @Serializer\Type("RetailCrm\DeliveryModuleBundle\Model\Model\Contragent") */ public $contragent; public function getNickName(): ?string { $result = trim( $this->lastName . ' ' . $this->firstName . ' ' . $this->patronymic ); return $result; } }