Class: Ingenico::Direct::SDK::Domain::PaymentOutput

Inherits:
Ingenico::Direct::SDK::DataObject show all
Defined in:
lib/ingenico/direct/sdk/domain/payment_output.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Direct::SDK::DataObject

new_from_hash

Instance Attribute Details

#amount_of_moneyIngenico::Direct::SDK::Domain::AmountOfMoney

Returns the current value of amount_of_money.

Returns:



24
25
26
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 24

def amount_of_money
  @amount_of_money
end

#amount_paidLong

Returns the current value of amount_paid.

Returns:

  • (Long)

    the current value of amount_paid



24
25
26
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 24

def amount_paid
  @amount_paid
end

#card_payment_method_specific_outputIngenico::Direct::SDK::Domain::CardPaymentMethodSpecificOutput

Returns the current value of card_payment_method_specific_output.

Returns:



24
25
26
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 24

def card_payment_method_specific_output
  @card_payment_method_specific_output
end

#mobile_payment_method_specific_outputIngenico::Direct::SDK::Domain::MobilePaymentMethodSpecificOutput

Returns the current value of mobile_payment_method_specific_output.

Returns:



24
25
26
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 24

def mobile_payment_method_specific_output
  @mobile_payment_method_specific_output
end

#payment_methodString

Returns the current value of payment_method.

Returns:

  • (String)

    the current value of payment_method



24
25
26
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 24

def payment_method
  @payment_method
end

#redirect_payment_method_specific_outputIngenico::Direct::SDK::Domain::RedirectPaymentMethodSpecificOutput

Returns the current value of redirect_payment_method_specific_output.

Returns:



24
25
26
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 24

def redirect_payment_method_specific_output
  @redirect_payment_method_specific_output
end

#referencesIngenico::Direct::SDK::Domain::PaymentReferences

Returns the current value of references.

Returns:



24
25
26
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 24

def references
  @references
end

#sepa_direct_debit_payment_method_specific_outputIngenico::Direct::SDK::Domain::SepaDirectDebitPaymentMethodSpecificOutput

Returns the current value of sepa_direct_debit_payment_method_specific_output.

Returns:



24
25
26
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 24

def sepa_direct_debit_payment_method_specific_output
  @sepa_direct_debit_payment_method_specific_output
end

Instance Method Details

#from_hash(hash) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 48

def from_hash(hash)
  super
  if hash.key? 'amountOfMoney'
    raise TypeError, "value '%s' is not a Hash" % [hash['amountOfMoney']] unless hash['amountOfMoney'].is_a? Hash
    @amount_of_money = Ingenico::Direct::SDK::Domain::AmountOfMoney.new_from_hash(hash['amountOfMoney'])
  end
  @amount_paid = hash['amountPaid'] if hash.key? 'amountPaid'
  if hash.key? 'cardPaymentMethodSpecificOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['cardPaymentMethodSpecificOutput']] unless hash['cardPaymentMethodSpecificOutput'].is_a? Hash
    @card_payment_method_specific_output = Ingenico::Direct::SDK::Domain::CardPaymentMethodSpecificOutput.new_from_hash(hash['cardPaymentMethodSpecificOutput'])
  end
  if hash.key? 'mobilePaymentMethodSpecificOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['mobilePaymentMethodSpecificOutput']] unless hash['mobilePaymentMethodSpecificOutput'].is_a? Hash
    @mobile_payment_method_specific_output = Ingenico::Direct::SDK::Domain::MobilePaymentMethodSpecificOutput.new_from_hash(hash['mobilePaymentMethodSpecificOutput'])
  end
  @payment_method = hash['paymentMethod'] if hash.key? 'paymentMethod'
  if hash.key? 'redirectPaymentMethodSpecificOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['redirectPaymentMethodSpecificOutput']] unless hash['redirectPaymentMethodSpecificOutput'].is_a? Hash
    @redirect_payment_method_specific_output = Ingenico::Direct::SDK::Domain::RedirectPaymentMethodSpecificOutput.new_from_hash(hash['redirectPaymentMethodSpecificOutput'])
  end
  if hash.key? 'references'
    raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash
    @references = Ingenico::Direct::SDK::Domain::PaymentReferences.new_from_hash(hash['references'])
  end
  if hash.key? 'sepaDirectDebitPaymentMethodSpecificOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['sepaDirectDebitPaymentMethodSpecificOutput']] unless hash['sepaDirectDebitPaymentMethodSpecificOutput'].is_a? Hash
    @sepa_direct_debit_payment_method_specific_output = Ingenico::Direct::SDK::Domain::SepaDirectDebitPaymentMethodSpecificOutput.new_from_hash(hash['sepaDirectDebitPaymentMethodSpecificOutput'])
  end
end

#to_hHash

Returns:

  • (Hash)


35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/ingenico/direct/sdk/domain/payment_output.rb', line 35

def to_h
  hash = super
  hash['amountOfMoney'] = @amount_of_money.to_h if @amount_of_money
  hash['amountPaid'] = @amount_paid unless @amount_paid.nil?
  hash['cardPaymentMethodSpecificOutput'] = @card_payment_method_specific_output.to_h if @card_payment_method_specific_output
  hash['mobilePaymentMethodSpecificOutput'] = @mobile_payment_method_specific_output.to_h if @mobile_payment_method_specific_output
  hash['paymentMethod'] = @payment_method unless @payment_method.nil?
  hash['redirectPaymentMethodSpecificOutput'] = @redirect_payment_method_specific_output.to_h if @redirect_payment_method_specific_output
  hash['references'] = @references.to_h if @references
  hash['sepaDirectDebitPaymentMethodSpecificOutput'] = @sepa_direct_debit_payment_method_specific_output.to_h if @sepa_direct_debit_payment_method_specific_output
  hash
end