1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
contact.php
См. документацию.
1<?php
2
3namespace Sale\Handlers\Delivery\YandexTaxi\Api\RequestEntity;
4
10final class Contact extends RequestEntity
11{
13 protected $phone;
14
16 protected $name;
17
19 protected $email;
20
24 public function getPhone()
25 {
26 return $this->phone;
27 }
28
33 public function setPhone(string $phone): Contact
34 {
35 $this->phone = $phone;
36
37 return $this;
38 }
39
43 public function getName()
44 {
45 return $this->name;
46 }
47
52 public function setName(string $name): Contact
53 {
54 $this->name = $name;
55
56 return $this;
57 }
58
62 public function getEmail()
63 {
64 return $this->email;
65 }
66
71 public function setEmail(string $email): Contact
72 {
73 $this->email = $email;
74
75 return $this;
76 }
77}
$name
Определения menu_edit.php:35
$email
Определения payment.php:49