1 | <?php |
||
10 | final class FacadeDocBodyResponse |
||
11 | { |
||
12 | public const STATUS_IN_PROGRESS = 'IN_PROGRESS'; |
||
13 | public const STATUS_CHECKED_NOT_OK = 'CHECKED_NOT_OK'; |
||
14 | public const STATUS_PROCESSING_ERROR = 'PROCESSING_ERROR'; |
||
15 | public const STATUS_CHECKED_OK = 'CHECKED_OK'; |
||
16 | public const STATUS_UNDEFINED = 'UNDEFINED'; |
||
17 | public const STATUS_CANCELLED = 'CANCELLED'; |
||
18 | public const STATUS_ACCEPTED = 'ACCEPTED'; |
||
19 | public const STATUS_WAIT_ACCEPTANCE = 'WAIT_ACCEPTANCE'; |
||
20 | public const STATUS_WAIT_PARTICIPANT_REGISTRATION = 'WAIT_PARTICIPANT_REGISTRATION'; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $number; |
||
26 | /** |
||
27 | * @var string |
||
28 | * |
||
29 | * @SerializedName("docDate") |
||
30 | */ |
||
31 | private $docDate; |
||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | private $type; |
||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | private $status; |
||
40 | /** |
||
41 | * @var string|null |
||
42 | * |
||
43 | * @SerializedName("senderName") |
||
44 | */ |
||
45 | private $senderName; |
||
46 | /** |
||
47 | * @var string|null |
||
48 | */ |
||
49 | private $content; |
||
50 | /** |
||
51 | * @var Body|null |
||
52 | */ |
||
53 | private $body; |
||
54 | /** |
||
55 | * @var array|null |
||
56 | */ |
||
57 | private $errors; |
||
58 | /** |
||
59 | * @var string|null |
||
60 | */ |
||
61 | private $receiverName; |
||
62 | /** |
||
63 | * @var string|null |
||
64 | */ |
||
65 | private $downloadStatus; |
||
66 | /** |
||
67 | * @var string|null |
||
68 | */ |
||
69 | private $downloadDesc; |
||
70 | /** |
||
71 | * @var string|null |
||
72 | */ |
||
73 | private $cisTotal; |
||
74 | |||
75 | 6 | public function __construct( |
|
92 | |||
93 | public function getNumber(): string |
||
97 | |||
98 | public function getDocDate(): string |
||
102 | |||
103 | public function getType(): string |
||
107 | |||
108 | public function getStatus(): string |
||
112 | |||
113 | public function getSenderName(): ?string |
||
117 | |||
118 | public function getContent(): ?string |
||
122 | |||
123 | public function getBody(): ?Body |
||
127 | |||
128 | public function getErrors(): ?array |
||
132 | |||
133 | public function setErrors(?array $errors): self |
||
139 | |||
140 | public function getReceiverName(): ?string |
||
144 | |||
145 | public function setReceiverName(?string $receiverName): self |
||
151 | |||
152 | public function getDownloadStatus(): ?string |
||
156 | |||
157 | public function setDownloadStatus(?string $downloadStatus): self |
||
163 | |||
164 | public function getDownloadDesc(): ?string |
||
168 | |||
169 | public function setDownloadDesc(?string $downloadDesc): self |
||
175 | |||
176 | public function getCisTotal(): ?string |
||
180 | |||
181 | 6 | public function setCisTotal(?string $cisTotal): self |
|
187 | } |
||
188 |