Class: PagSeguro::SubscriptionPaymentOrder::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/pagseguro/subscription_payment_order/response.rb

Instance Method Summary collapse

Constructor Details

#initialize(response, object) ⇒ Response

Returns a new instance of Response.



4
5
6
7
# File 'lib/pagseguro/subscription_payment_order/response.rb', line 4

def initialize(response, object)
  @response = response
  @object = object
end

Instance Method Details

#serializeObject



9
10
11
12
13
14
15
16
17
# File 'lib/pagseguro/subscription_payment_order/response.rb', line 9

def serialize
  if success?
    object.update_attributes serialized_data
  else
    object.errors.add response
  end

  object
end

#success?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/pagseguro/subscription_payment_order/response.rb', line 19

def success?
  response.success? && response.xml?
end