1 | <?php |
||
10 | class PagamentoExterno implements \JsonSerializable |
||
11 | { |
||
12 | /** |
||
13 | * @var integer |
||
14 | */ |
||
15 | private $id; |
||
16 | |||
17 | /** |
||
18 | * @var integer |
||
19 | */ |
||
20 | private $tipo; |
||
21 | |||
22 | /** |
||
23 | * @var integer |
||
24 | */ |
||
25 | private $origem; |
||
26 | |||
27 | /** |
||
28 | * @var integer |
||
29 | */ |
||
30 | private $tipoParcelamento; |
||
31 | |||
32 | /** |
||
33 | * @var PagamentoExternoStatus |
||
34 | */ |
||
35 | private $pagamentoExternoStatus; |
||
36 | |||
37 | /** |
||
38 | * @var Pessoa |
||
39 | */ |
||
40 | private $pessoa; |
||
41 | |||
42 | /** |
||
43 | * @var IntencaoVenda |
||
44 | */ |
||
45 | private $intencoesVenda; |
||
46 | |||
47 | /** |
||
48 | * @var Terminal |
||
49 | */ |
||
50 | private $terminal; |
||
51 | |||
52 | /** |
||
53 | * @var integer |
||
54 | */ |
||
55 | private $nsuTid; |
||
56 | |||
57 | /** |
||
58 | * @var string |
||
59 | */ |
||
60 | private $autorizacao; |
||
61 | |||
62 | /** |
||
63 | * @var string |
||
64 | */ |
||
65 | private $adquirente; |
||
66 | |||
67 | /** |
||
68 | * @var string |
||
69 | */ |
||
70 | private $codigoRespostaAdquirente; |
||
71 | |||
72 | /** |
||
73 | * @var string |
||
74 | */ |
||
75 | private $mensagemRespostaAdquirente; |
||
76 | |||
77 | /** |
||
78 | * @var \DateTime |
||
79 | */ |
||
80 | private $dataAdquirente; |
||
81 | |||
82 | /** |
||
83 | * @var string |
||
84 | */ |
||
85 | private $respostaAdquirente; |
||
86 | |||
87 | /** |
||
88 | * @var string |
||
89 | */ |
||
90 | private $comprovanteAdquirente; |
||
91 | |||
92 | /** |
||
93 | * PagamentoExterno constructor. |
||
94 | */ |
||
95 | public function __construct() |
||
98 | |||
99 | /** |
||
100 | * @return int |
||
101 | */ |
||
102 | public function getId() |
||
106 | |||
107 | /** |
||
108 | * @param int $id |
||
109 | * @return PagamentoExterno |
||
110 | */ |
||
111 | public function setId($id) |
||
116 | |||
117 | /** |
||
118 | * @return int |
||
119 | */ |
||
120 | public function getTipo() |
||
124 | |||
125 | /** |
||
126 | * @param int $tipo |
||
127 | * @return PagamentoExterno |
||
128 | */ |
||
129 | public function setTipo($tipo) |
||
134 | |||
135 | /** |
||
136 | * @return int |
||
137 | */ |
||
138 | public function getOrigem() |
||
142 | |||
143 | /** |
||
144 | * @param int $origem |
||
145 | * @return PagamentoExterno |
||
146 | */ |
||
147 | public function setOrigem($origem) |
||
152 | |||
153 | /** |
||
154 | * @return int |
||
155 | */ |
||
156 | public function getTipoParcelamento() |
||
160 | |||
161 | /** |
||
162 | * @param int $tipoParcelamento |
||
163 | * @return PagamentoExterno |
||
164 | */ |
||
165 | public function setTipoParcelamento($tipoParcelamento) |
||
170 | |||
171 | /** |
||
172 | * @return PagamentoExternoStatus |
||
173 | */ |
||
174 | public function getPagamentoExternoStatus() |
||
178 | |||
179 | /** |
||
180 | * @param PagamentoExternoStatus $pagamentoExternoStatus |
||
181 | * @return PagamentoExterno |
||
182 | */ |
||
183 | public function setPagamentoExternoStatus($pagamentoExternoStatus) |
||
193 | |||
194 | /** |
||
195 | * @return Pessoa |
||
196 | */ |
||
197 | public function getPessoa() |
||
201 | |||
202 | /** |
||
203 | * @param Pessoa $pessoa |
||
204 | * @return PagamentoExterno |
||
205 | */ |
||
206 | public function setPessoa($pessoa) |
||
215 | |||
216 | /** |
||
217 | * @return IntencaoVenda |
||
218 | */ |
||
219 | public function getIntencoesVenda() |
||
223 | |||
224 | /** |
||
225 | * @param IntencaoVenda $intencoesVenda |
||
226 | * @return PagamentoExterno |
||
227 | */ |
||
228 | public function setIntencoesVenda($intencoesVenda) |
||
237 | |||
238 | /** |
||
239 | * @return Terminal |
||
240 | */ |
||
241 | public function getTerminal() |
||
245 | |||
246 | /** |
||
247 | * @param Terminal $terminal |
||
248 | * @return PagamentoExterno |
||
249 | */ |
||
250 | public function setTerminal($terminal) |
||
259 | |||
260 | /** |
||
261 | * @return int |
||
262 | */ |
||
263 | public function getNsuTid() |
||
267 | |||
268 | /** |
||
269 | * @param int $nsuTid |
||
270 | * @return PagamentoExterno |
||
271 | */ |
||
272 | public function setNsuTid($nsuTid) |
||
277 | |||
278 | /** |
||
279 | * @return string |
||
280 | */ |
||
281 | public function getAutorizacao() |
||
285 | |||
286 | /** |
||
287 | * @param string $autorizacao |
||
288 | * @return PagamentoExterno |
||
289 | */ |
||
290 | public function setAutorizacao($autorizacao) |
||
295 | |||
296 | /** |
||
297 | * @return string |
||
298 | */ |
||
299 | public function getAdquirente() |
||
303 | |||
304 | /** |
||
305 | * @param string $adquirente |
||
306 | * @return PagamentoExterno |
||
307 | */ |
||
308 | public function setAdquirente($adquirente) |
||
313 | |||
314 | /** |
||
315 | * @return string |
||
316 | */ |
||
317 | public function getCodigoRespostaAdquirente() |
||
321 | |||
322 | /** |
||
323 | * @param string $codigoRespostaAdquirente |
||
324 | * @return PagamentoExterno |
||
325 | */ |
||
326 | public function setCodigoRespostaAdquirente($codigoRespostaAdquirente) |
||
331 | |||
332 | /** |
||
333 | * @return string |
||
334 | */ |
||
335 | public function getMensagemRespostaAdquirente() |
||
339 | |||
340 | /** |
||
341 | * @param string $mensagemRespostaAdquirente |
||
342 | * @return PagamentoExterno |
||
343 | */ |
||
344 | public function setMensagemRespostaAdquirente($mensagemRespostaAdquirente) |
||
349 | |||
350 | /** |
||
351 | * @return \DateTime |
||
352 | */ |
||
353 | public function getDataAdquirente() |
||
357 | |||
358 | /** |
||
359 | * @param \DateTime $dataAdquirente |
||
360 | * @return PagamentoExterno |
||
361 | */ |
||
362 | public function setDataAdquirente($dataAdquirente) |
||
367 | |||
368 | /** |
||
369 | * @return string |
||
370 | */ |
||
371 | public function getRespostaAdquirente() |
||
375 | |||
376 | /** |
||
377 | * @param string $respostaAdquirente |
||
378 | * @return PagamentoExterno |
||
379 | */ |
||
380 | public function setRespostaAdquirente($respostaAdquirente) |
||
385 | |||
386 | /** |
||
387 | * @return string |
||
388 | */ |
||
389 | public function getComprovanteAdquirente() |
||
393 | |||
394 | /** |
||
395 | * @param string $comprovanteAdquirente |
||
396 | * @return PagamentoExterno |
||
397 | */ |
||
398 | public function setComprovanteAdquirente($comprovanteAdquirente) |
||
403 | |||
404 | function jsonSerialize() |
||
424 | |||
425 | |||
426 | } |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..