| Total Complexity | 4 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class Retornos extends \OBRSDK\Entidades\Abstratos\AEntidadePropriedades { |
||
| 10 | |||
| 11 | /// |
||
| 12 | /// atributos de resposta |
||
| 13 | /// |
||
| 14 | protected $retorno_id; |
||
| 15 | protected $banco; |
||
| 16 | protected $data_recebimento; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * |
||
| 20 | * @var @var \OBRSDK\Entidades\Boletos[] |
||
| 21 | */ |
||
|
|
|||
| 22 | protected $boletos; |
||
| 23 | |||
| 24 | public function getRetornoId() { |
||
| 25 | return $this->retorno_id; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Banco gerador do arquivo de retorno |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function getBanco() { |
||
| 33 | return $this->banco; |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Data em que a API recebeu o retorno |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | public function getDataRecebimento() { |
||
| 41 | return $this->data_recebimento; |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * |
||
| 46 | * @return \OBRSDK\Entidades\Boletos[] |
||
| 47 | */ |
||
| 48 | public function getBoletos() { |
||
| 50 | } |
||
| 51 | |||
| 52 | } |
||
| 53 |