Passed
Push — master ( 44ce97...a68859 )
by Antônio
01:52
created

Retorno::getCodigoMovimento()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
3
namespace OBRSDK\Entidades;
4
5
/**
6
 * @author Antonio
7
 * @since 31/10/2017
8
 */
9
class Retorno extends \OBRSDK\Entidades\Abstratos\AEntidadePropriedades {
10
11
    protected $codigo_movimento;
12
    protected $pagador_documento;
13
    protected $pagador_nome;
14
    protected $valor_tarifa;
15
    protected $motivo_ocorrencia;
16
    protected $valor_acrescimo;
17
    protected $valor_desconto;
18
    protected $valor_abatimento;
19
    protected $valor_iof;
20
    protected $valor_pago;
21
    protected $valor_liquido;
22
    protected $valor_outras_despesas;
23
    protected $valor_outros_creditos;
24
    protected $data_ocorrencia;
25
    protected $data_credito;
26
    protected $ocorrencia_pag_codigo;
27
    protected $ocorrencia_pag_data;
28
    protected $ocorrencia_pag_valor;
29
    protected $ocorrencia_complemento;
30
31
    public function getCodigoMovimento() {
32
        return $this->codigo_movimento;
33
    }
34
35
    public function getPagadorDocumento() {
36
        return $this->pagador_documento;
37
    }
38
39
    public function getPagadorNome() {
40
        return $this->pagador_nome;
41
    }
42
43
    public function getValorTarifa() {
44
        return $this->valor_tarifa;
45
    }
46
47
    public function getMotivoOcorrencia() {
48
        return $this->motivo_ocorrencia;
49
    }
50
51
    public function getValorAcrescimo() {
52
        return $this->valor_acrescimo;
53
    }
54
55
    public function getValorDesconto() {
56
        return $this->valor_desconto;
57
    }
58
59
    public function getValorAbatimento() {
60
        return $this->valor_abatimento;
61
    }
62
63
    public function getValorIof() {
64
        return $this->valor_iof;
65
    }
66
67
    public function getValorPago() {
68
        return $this->valor_pago;
69
    }
70
71
    public function getValorLiquido() {
72
        return $this->valor_liquido;
73
    }
74
75
    public function getValorOutrasDespesas() {
76
        return $this->valor_outras_despesas;
77
    }
78
79
    public function getValorOutrosCreditos() {
80
        return $this->valor_outros_creditos;
81
    }
82
83
    public function getDataOcorrencia() {
84
        return $this->data_ocorrencia;
85
    }
86
87
    public function getDataCredito() {
88
        return $this->data_credito;
89
    }
90
91
    public function getOcorrenciaPagCodigo() {
92
        return $this->ocorrencia_pag_codigo;
93
    }
94
95
    public function getOcorrenciaPagData() {
96
        return $this->ocorrencia_pag_data;
97
    }
98
99
    public function getOcorrenciaPagValor() {
100
        return $this->ocorrencia_pag_valor;
101
    }
102
103
    public function getOcorrenciaComplemento() {
104
        return $this->ocorrencia_complemento;
105
    }
106
107
}
108