1 | <?php |
||
9 | final class FacadeDocListV2ItemResponse |
||
10 | { |
||
11 | private const DATE_FORMAT = ''; |
||
12 | |||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $number; |
||
17 | /** |
||
18 | * @var string |
||
19 | * @SerializedName("docDate") |
||
20 | */ |
||
21 | private $docDate; |
||
22 | /** |
||
23 | * @var string |
||
24 | * @SerializedName("receivedAt") |
||
25 | */ |
||
26 | private $receivedAt; |
||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $type; |
||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | private $status; |
||
35 | /** |
||
36 | * @var string |
||
37 | * @SerializedName("senderName") |
||
38 | */ |
||
39 | private $senderName; |
||
40 | |||
41 | public function __construct( |
||
56 | |||
57 | public function getNumber(): string |
||
61 | |||
62 | public function getDocDate(): string |
||
66 | |||
67 | /** |
||
68 | * @throws \Exception |
||
69 | */ |
||
70 | public function getDocDateDateTime(): \DateTimeImmutable |
||
74 | |||
75 | public function getReceivedAt(): string |
||
79 | |||
80 | /** |
||
81 | * @throws \Exception |
||
82 | */ |
||
83 | public function getReceivedAtDateTime(): \DateTimeImmutable |
||
87 | |||
88 | public function getType(): string |
||
92 | |||
93 | public function getStatus(): string |
||
97 | |||
98 | public function getSenderName(): string |
||
102 | } |
||
103 |