Class: BrNfe::Servico::Response::Default
- Inherits:
-
ActiveModelBase
- Object
- ActiveModelBase
- BrNfe::Servico::Response::Default
- Defined in:
- lib/br_nfe/servico/response/default.rb
Instance Attribute Summary collapse
-
#data_recebimento ⇒ Object
Returns the value of attribute data_recebimento.
-
#error_messages ⇒ Object
Returns the value of attribute error_messages.
-
#notas_fiscais ⇒ Object
Returns the value of attribute notas_fiscais.
-
#numero_lote ⇒ Object
Returns the value of attribute numero_lote.
-
#protocolo ⇒ Object
Returns the value of attribute protocolo.
-
#success ⇒ Object
Returns the value of attribute success.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ Default
constructor
A new instance of Default.
- #success? ⇒ Boolean
Methods inherited from ActiveModelBase
#assign_attributes, #default_values
Constructor Details
#initialize(attributes = {}) ⇒ Default
Returns a new instance of Default.
14 15 16 17 18 |
# File 'lib/br_nfe/servico/response/default.rb', line 14 def initialize(attributes = {}) self.notas_fiscais = [] # Para poder utilizar o << self. = [] # Para poder utilizar o << super end |
Instance Attribute Details
#data_recebimento ⇒ Object
Returns the value of attribute data_recebimento.
10 11 12 |
# File 'lib/br_nfe/servico/response/default.rb', line 10 def data_recebimento @data_recebimento end |
#error_messages ⇒ Object
Returns the value of attribute error_messages.
6 7 8 |
# File 'lib/br_nfe/servico/response/default.rb', line 6 def @error_messages end |
#notas_fiscais ⇒ Object
Returns the value of attribute notas_fiscais.
7 8 9 |
# File 'lib/br_nfe/servico/response/default.rb', line 7 def notas_fiscais @notas_fiscais end |
#numero_lote ⇒ Object
Returns the value of attribute numero_lote.
11 12 13 |
# File 'lib/br_nfe/servico/response/default.rb', line 11 def numero_lote @numero_lote end |
#protocolo ⇒ Object
Returns the value of attribute protocolo.
9 10 11 |
# File 'lib/br_nfe/servico/response/default.rb', line 9 def protocolo @protocolo end |
#success ⇒ Object
Returns the value of attribute success.
5 6 7 |
# File 'lib/br_nfe/servico/response/default.rb', line 5 def success @success end |
Instance Method Details
#success? ⇒ Boolean
28 29 30 |
# File 'lib/br_nfe/servico/response/default.rb', line 28 def success? success end |