Class: ActiveMerchant::Billing::PaymillGateway::ResponseParser

Inherits:
Object
  • Object
show all
Defined in:
lib/active_merchant/billing/gateways/paymill.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(raw_response = "", options = {}) ⇒ ResponseParser

Returns a new instance of ResponseParser.



242
243
244
245
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 242

def initialize(raw_response="", options={})
  @raw_response = raw_response
  @options = options
end

Instance Attribute Details

#messageObject (readonly)

Returns the value of attribute message.



240
241
242
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 240

def message
  @message
end

#optionsObject (readonly)

Returns the value of attribute options.



240
241
242
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 240

def options
  @options
end

#parsedObject (readonly)

Returns the value of attribute parsed.



240
241
242
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 240

def parsed
  @parsed
end

#raw_responseObject (readonly)

Returns the value of attribute raw_response.



240
241
242
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 240

def raw_response
  @raw_response
end

#succeededObject (readonly)

Returns the value of attribute succeeded.



240
241
242
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 240

def succeeded
  @succeeded
end

Instance Method Details

#generate_responseObject



247
248
249
250
251
252
253
254
255
256
# File 'lib/active_merchant/billing/gateways/paymill.rb', line 247

def generate_response
  parse_response
  if parsed['error']
    handle_response_parse_error
  else
    handle_response_correct_parsing
  end

  Response.new(succeeded, message, parsed, options)
end