Class: MX::Banxico::WebServices::WebService::Respuesta
- Inherits:
-
Struct
- Object
- Struct
- MX::Banxico::WebServices::WebService::Respuesta
- Defined in:
- lib/MX/Banxico/web_services/web_service.rb
Overview
Estructura para guardar el cuerpo de la respuesta de una operación o los errores
Instance Attribute Summary collapse
-
#cuerpo ⇒ Object
Returns the value of attribute cuerpo.
-
#errores ⇒ Object
Returns the value of attribute errores.
Instance Method Summary collapse
-
#errores? ⇒ Boolean
Determina si hubo errores en al efectuar la operación.
-
#exito? ⇒ Boolean
Determina si la operación fue exitosa.
Instance Attribute Details
#cuerpo ⇒ Object
Returns the value of attribute cuerpo
14 15 16 |
# File 'lib/MX/Banxico/web_services/web_service.rb', line 14 def cuerpo @cuerpo end |
#errores ⇒ Object
Returns the value of attribute errores
14 15 16 |
# File 'lib/MX/Banxico/web_services/web_service.rb', line 14 def errores @errores end |
Instance Method Details
#errores? ⇒ Boolean
Determina si hubo errores en al efectuar la operación.
28 29 30 |
# File 'lib/MX/Banxico/web_services/web_service.rb', line 28 def errores? !exito? end |
#exito? ⇒ Boolean
Determina si la operación fue exitosa.
20 21 22 |
# File 'lib/MX/Banxico/web_services/web_service.rb', line 20 def exito? errores.nil? end |