| 1 | <?php | ||
| 9 | class DeliveryStatusHistoryItem | ||
| 10 | { | ||
| 11 | /** | ||
| 12 | * @var string | ||
| 13 | */ | ||
| 14 | private $time; | ||
| 15 | |||
| 16 | /** | ||
| 17 | * @var string | ||
| 18 | */ | ||
| 19 | private $uniformPimpayDeliveryStatus; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @var string | ||
| 23 | */ | ||
| 24 | private $customDeliveryStatus; | ||
| 25 | |||
| 26 | /** | ||
| 27 | * @var string | ||
| 28 | */ | ||
| 29 | private $deliveryServiceDeliveryStatus; | ||
| 30 | |||
| 31 | /** | ||
| 32 | * @return string | ||
| 33 | */ | ||
| 34 | public function getTime(): string | ||
| 38 | |||
| 39 | /** | ||
| 40 | * @param \DateTime $time | ||
| 41 | * @return $this | ||
| 42 | */ | ||
| 43 | public function setTime(\DateTime $time) | ||
| 49 | |||
| 50 | /** | ||
| 51 | * @return string | ||
| 52 | */ | ||
| 53 | public function getUniformPimpayDeliveryStatus(): string | ||
| 57 | |||
| 58 | /** | ||
| 59 | * @param string $uniformPimpayDeliveryStatus | ||
| 60 | * @return $this | ||
| 61 | */ | ||
| 62 | public function setUniformPimpayDeliveryStatus(string $uniformPimpayDeliveryStatus) | ||
| 68 | |||
| 69 | /** | ||
| 70 | * @return string | ||
| 71 | */ | ||
| 72 | public function getCustomDeliveryStatus(): string | ||
| 76 | |||
| 77 | /** | ||
| 78 | * @param string $customDeliveryStatus | ||
| 79 | * @return $this | ||
| 80 | */ | ||
| 81 | public function setCustomDeliveryStatus(string $customDeliveryStatus) | ||
| 87 | |||
| 88 | /** | ||
| 89 | * @return string | ||
| 90 | */ | ||
| 91 | public function getDeliveryServiceDeliveryStatus(): string | ||
| 95 | |||
| 96 | /** | ||
| 97 | * @param string $deliveryServiceDeliveryStatus | ||
| 98 | * @return $this | ||
| 99 | */ | ||
| 100 | public function setDeliveryServiceDeliveryStatus(string $deliveryServiceDeliveryStatus) | ||
| 106 | } | ||
| 107 |