1 | <?php |
||
9 | class GetByFiltrosRequest implements \JsonSerializable |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $status; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $tipo; |
||
21 | |||
22 | /** |
||
23 | * @var \DateTime |
||
24 | */ |
||
25 | private $dataInicio; |
||
26 | |||
27 | /** |
||
28 | * @var \DateTime |
||
29 | */ |
||
30 | private $dataFim; |
||
31 | |||
32 | /** |
||
33 | * @var boolean |
||
34 | */ |
||
35 | private $valorComDivergencia; |
||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | private $referencia; |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | public function getStatus() |
||
49 | |||
50 | /** |
||
51 | * @param string $status |
||
52 | * @return GetByFiltrosRequest |
||
53 | */ |
||
54 | public function setStatus($status) |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getTipo() |
||
67 | |||
68 | /** |
||
69 | * @param string $tipo |
||
70 | * @return GetByFiltrosRequest |
||
71 | */ |
||
72 | public function setTipo($tipo) |
||
77 | |||
78 | /** |
||
79 | * @return \DateTime |
||
80 | */ |
||
81 | public function getDataInicio() |
||
85 | |||
86 | /** |
||
87 | * @param \DateTime $dataInicio |
||
88 | * @return GetByFiltrosRequest |
||
89 | */ |
||
90 | public function setDataInicio($dataInicio) |
||
95 | |||
96 | /** |
||
97 | * @return \DateTime |
||
98 | */ |
||
99 | public function getDataFim() |
||
103 | |||
104 | /** |
||
105 | * @param \DateTime $dataFim |
||
106 | * @return GetByFiltrosRequest |
||
107 | */ |
||
108 | public function setDataFim($dataFim) |
||
113 | |||
114 | /** |
||
115 | * @return boolean |
||
116 | */ |
||
117 | public function isValorComDivergencia() |
||
121 | |||
122 | /** |
||
123 | * @param boolean $valorComDivergencia |
||
124 | * @return GetByFiltrosRequest |
||
125 | */ |
||
126 | public function setValorComDivergencia($valorComDivergencia) |
||
131 | |||
132 | /** |
||
133 | * @return string |
||
134 | */ |
||
135 | public function getReferencia() |
||
139 | |||
140 | /** |
||
141 | * @param string $referencia |
||
142 | * @return GetByFiltrosRequest |
||
143 | */ |
||
144 | public function setReferencia($referencia) |
||
149 | |||
150 | /** |
||
151 | * @return array |
||
152 | */ |
||
153 | function jsonSerialize() |
||
164 | |||
165 | } |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.