Class: Ingenico::Connect::SDK::Domain::Payment::PaymentApprovalResponse

Inherits:
Ingenico::Connect::SDK::DataObject show all
Defined in:
lib/ingenico/connect/sdk/domain/payment/payment_approval_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Connect::SDK::DataObject

new_from_hash

Instance Attribute Details

#card_payment_method_specific_outputIngenico::Connect::SDK::Domain::Payment::ApprovePaymentCardPaymentMethodSpecificOutput



18
19
20
# File 'lib/ingenico/connect/sdk/domain/payment/payment_approval_response.rb', line 18

def card_payment_method_specific_output
  @card_payment_method_specific_output
end

#mobile_payment_method_specific_outputIngenico::Connect::SDK::Domain::Payment::ApprovePaymentMobilePaymentMethodSpecificOutput



18
19
20
# File 'lib/ingenico/connect/sdk/domain/payment/payment_approval_response.rb', line 18

def mobile_payment_method_specific_output
  @mobile_payment_method_specific_output
end

#paymentIngenico::Connect::SDK::Domain::Payment::Payment



18
19
20
# File 'lib/ingenico/connect/sdk/domain/payment/payment_approval_response.rb', line 18

def payment
  @payment
end

#payment_method_specific_outputObject

Deprecated.

Use cardPaymentMethodSpecificOutput instead



18
19
20
# File 'lib/ingenico/connect/sdk/domain/payment/payment_approval_response.rb', line 18

def payment_method_specific_output
  @payment_method_specific_output
end

Instance Method Details

#from_hash(hash) ⇒ Object



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/ingenico/connect/sdk/domain/payment/payment_approval_response.rb', line 40

def from_hash(hash)
  super
  if hash.has_key? 'cardPaymentMethodSpecificOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['cardPaymentMethodSpecificOutput']] unless hash['cardPaymentMethodSpecificOutput'].is_a? Hash
    @card_payment_method_specific_output = Ingenico::Connect::SDK::Domain::Payment::ApprovePaymentCardPaymentMethodSpecificOutput.new_from_hash(hash['cardPaymentMethodSpecificOutput'])
  end
  if hash.has_key? 'mobilePaymentMethodSpecificOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['mobilePaymentMethodSpecificOutput']] unless hash['mobilePaymentMethodSpecificOutput'].is_a? Hash
    @mobile_payment_method_specific_output = Ingenico::Connect::SDK::Domain::Payment::ApprovePaymentMobilePaymentMethodSpecificOutput.new_from_hash(hash['mobilePaymentMethodSpecificOutput'])
  end
  if hash.has_key? 'payment'
    raise TypeError, "value '%s' is not a Hash" % [hash['payment']] unless hash['payment'].is_a? Hash
    @payment = Ingenico::Connect::SDK::Domain::Payment::Payment.new_from_hash(hash['payment'])
  end
  if hash.has_key? 'paymentMethodSpecificOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['paymentMethodSpecificOutput']] unless hash['paymentMethodSpecificOutput'].is_a? Hash
    @payment_method_specific_output = Ingenico::Connect::SDK::Domain::Payment::ApprovePaymentCardPaymentMethodSpecificOutput.new_from_hash(hash['paymentMethodSpecificOutput'])
  end
end

#to_hHash



31
32
33
34
35
36
37
38
# File 'lib/ingenico/connect/sdk/domain/payment/payment_approval_response.rb', line 31

def to_h
  hash = super
  hash['cardPaymentMethodSpecificOutput'] = @card_payment_method_specific_output.to_h unless @card_payment_method_specific_output.nil?
  hash['mobilePaymentMethodSpecificOutput'] = @mobile_payment_method_specific_output.to_h unless @mobile_payment_method_specific_output.nil?
  hash['payment'] = @payment.to_h unless @payment.nil?
  hash['paymentMethodSpecificOutput'] = @payment_method_specific_output.to_h unless @payment_method_specific_output.nil?
  hash
end