1 | <?php |
||
9 | final class FacadeDocListV2ItemResponse |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $number; |
||
15 | /** |
||
16 | * @var string |
||
17 | * @SerializedName("docDate") |
||
18 | */ |
||
19 | private $docDate; |
||
20 | /** |
||
21 | * @var string |
||
22 | * @SerializedName("receivedAt") |
||
23 | */ |
||
24 | private $receivedAt; |
||
25 | /** |
||
26 | * @var string|null |
||
27 | */ |
||
28 | private $type; |
||
29 | /** |
||
30 | * @var string|null |
||
31 | */ |
||
32 | private $status; |
||
33 | /** |
||
34 | * @var string|null |
||
35 | * @SerializedName("senderName") |
||
36 | */ |
||
37 | private $senderName; |
||
38 | |||
39 | public function __construct( |
||
48 | |||
49 | public function getNumber(): string |
||
53 | |||
54 | public function getDocDate(): string |
||
58 | |||
59 | /** |
||
60 | * @throws \Exception |
||
61 | */ |
||
62 | public function getDocDateDateTime(): \DateTimeImmutable |
||
66 | |||
67 | public function getReceivedAt(): string |
||
71 | |||
72 | /** |
||
73 | * @throws \Exception |
||
74 | */ |
||
75 | public function getReceivedAtDateTime(): \DateTimeImmutable |
||
79 | |||
80 | public function setType(?string $type): self |
||
86 | |||
87 | public function setStatus(?string $status): self |
||
93 | |||
94 | public function setSenderName(?string $senderName): self |
||
100 | |||
101 | public function getType(): ?string |
||
105 | |||
106 | public function getStatus(): ?string |
||
110 | |||
111 | public function getSenderName(): ?string |
||
115 | } |
||
116 |