1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
visitedat.php
См. документацию.
1<?php
2
3namespace Sale\Handlers\Delivery\YandexTaxi\Api\RequestEntity;
4
5class VisitedAt extends RequestEntity
6{
7 protected ?string $expected = null;
8 protected ?string $actual = null;
9
13 public function getExpected(): ?string
14 {
15 return $this->expected;
16 }
17
22 public function setExpected(?string $expected): VisitedAt
23 {
24 $this->expected = $expected;
25
26 return $this;
27 }
28
32 public function getActual(): ?string
33 {
34 return $this->actual;
35 }
36
41 public function setActual(?string $actual): VisitedAt
42 {
43 $this->actual = $actual;
44
45 return $this;
46 }
47}