1 | <?php |
||
16 | class FormaPagamento implements \JsonSerializable |
||
17 | { |
||
18 | /** |
||
19 | * @var integer |
||
20 | */ |
||
21 | private $id; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $nome; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $modalidade; |
||
32 | |||
33 | /** |
||
34 | * @var FluxoPagamento |
||
35 | */ |
||
36 | private $fluxoPagamento; |
||
37 | |||
38 | /** |
||
39 | * FormaPagamento constructor. |
||
40 | */ |
||
41 | public function __construct() |
||
44 | |||
45 | /** |
||
46 | * @return int |
||
47 | */ |
||
48 | public function getId() |
||
52 | |||
53 | /** |
||
54 | * @param int $id |
||
55 | * @return FormaPagamento |
||
56 | */ |
||
57 | public function setId($id) |
||
62 | |||
63 | /** |
||
64 | * @return string |
||
65 | */ |
||
66 | public function getNome() |
||
70 | |||
71 | /** |
||
72 | * @param string $nome |
||
73 | * @return FormaPagamento |
||
74 | */ |
||
75 | public function setNome($nome) |
||
80 | |||
81 | /** |
||
82 | * @return string |
||
83 | */ |
||
84 | public function getModalidade() |
||
88 | |||
89 | /** |
||
90 | * @param string $modalidade |
||
91 | * @return FormaPagamento |
||
92 | */ |
||
93 | public function setModalidade($modalidade) |
||
98 | |||
99 | /** |
||
100 | * @return FluxoPagamento |
||
101 | */ |
||
102 | public function getFluxoPagamento() |
||
106 | |||
107 | /** |
||
108 | * @param FluxoPagamento $fluxoPagamento |
||
109 | * @return FormaPagamento |
||
110 | */ |
||
111 | public function setFluxoPagamento($fluxoPagamento) |
||
120 | |||
121 | function jsonSerialize() |
||
130 | |||
131 | |||
132 | } |