Class: ActiveMerchant::Billing::PaymillGateway::ResponseParser
- Inherits:
-
Object
- Object
- ActiveMerchant::Billing::PaymillGateway::ResponseParser
- Defined in:
- lib/active_merchant/billing/gateways/paymill.rb
Instance Attribute Summary collapse
-
#message ⇒ Object
readonly
Returns the value of attribute message.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#parsed ⇒ Object
readonly
Returns the value of attribute parsed.
-
#raw_response ⇒ Object
readonly
Returns the value of attribute raw_response.
-
#succeeded ⇒ Object
readonly
Returns the value of attribute succeeded.
Instance Method Summary collapse
- #generate_response ⇒ Object
-
#initialize(raw_response = '', options = {}) ⇒ ResponseParser
constructor
A new instance of ResponseParser.
Constructor Details
#initialize(raw_response = '', options = {}) ⇒ ResponseParser
Returns a new instance of ResponseParser.
331 332 333 334 |
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 331 def initialize(raw_response='', ={}) @raw_response = raw_response = end |
Instance Attribute Details
#message ⇒ Object (readonly)
Returns the value of attribute message.
329 330 331 |
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 329 def end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
329 330 331 |
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 329 def end |
#parsed ⇒ Object (readonly)
Returns the value of attribute parsed.
329 330 331 |
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 329 def parsed @parsed end |
#raw_response ⇒ Object (readonly)
Returns the value of attribute raw_response.
329 330 331 |
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 329 def raw_response @raw_response end |
#succeeded ⇒ Object (readonly)
Returns the value of attribute succeeded.
329 330 331 |
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 329 def succeeded @succeeded end |
Instance Method Details
#generate_response ⇒ Object
336 337 338 339 340 341 342 343 344 345 |
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 336 def generate_response parse_response if parsed['error'] handle_response_parse_error else handle_response_correct_parsing end Response.new(succeeded, , parsed, ) end |