Class: Ingenico::Direct::SDK::Domain::PaymentProduct840SpecificOutput
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::PaymentProduct840SpecificOutput
- Defined in:
- lib/ingenico/direct/sdk/domain/payment_product840_specific_output.rb
Instance Attribute Summary collapse
-
#billing_address ⇒ Ingenico::Direct::SDK::Domain::Address
The current value of billing_address.
-
#customer_account ⇒ Ingenico::Direct::SDK::Domain::PaymentProduct840CustomerAccount
The current value of customer_account.
-
#customer_address ⇒ Ingenico::Direct::SDK::Domain::Address
The current value of customer_address.
-
#protection_eligibility ⇒ Ingenico::Direct::SDK::Domain::ProtectionEligibility
The current value of protection_eligibility.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#billing_address ⇒ Ingenico::Direct::SDK::Domain::Address
Returns the current value of billing_address.
17 18 19 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_specific_output.rb', line 17 def billing_address @billing_address end |
#customer_account ⇒ Ingenico::Direct::SDK::Domain::PaymentProduct840CustomerAccount
Returns the current value of customer_account.
17 18 19 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_specific_output.rb', line 17 def customer_account @customer_account end |
#customer_address ⇒ Ingenico::Direct::SDK::Domain::Address
Returns the current value of customer_address.
17 18 19 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_specific_output.rb', line 17 def customer_address @customer_address end |
#protection_eligibility ⇒ Ingenico::Direct::SDK::Domain::ProtectionEligibility
Returns the current value of protection_eligibility.
17 18 19 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_specific_output.rb', line 17 def protection_eligibility @protection_eligibility end |
Instance Method Details
#from_hash(hash) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_specific_output.rb', line 33 def from_hash(hash) super if hash.key? 'billingAddress' raise TypeError, "value '%s' is not a Hash" % [hash['billingAddress']] unless hash['billingAddress'].is_a? Hash @billing_address = Ingenico::Direct::SDK::Domain::Address.new_from_hash(hash['billingAddress']) end if hash.key? 'customerAccount' raise TypeError, "value '%s' is not a Hash" % [hash['customerAccount']] unless hash['customerAccount'].is_a? Hash @customer_account = Ingenico::Direct::SDK::Domain::PaymentProduct840CustomerAccount.new_from_hash(hash['customerAccount']) end if hash.key? 'customerAddress' raise TypeError, "value '%s' is not a Hash" % [hash['customerAddress']] unless hash['customerAddress'].is_a? Hash @customer_address = Ingenico::Direct::SDK::Domain::Address.new_from_hash(hash['customerAddress']) end if hash.key? 'protectionEligibility' raise TypeError, "value '%s' is not a Hash" % [hash['protectionEligibility']] unless hash['protectionEligibility'].is_a? Hash @protection_eligibility = Ingenico::Direct::SDK::Domain::ProtectionEligibility.new_from_hash(hash['protectionEligibility']) end end |
#to_h ⇒ Hash
24 25 26 27 28 29 30 31 |
# File 'lib/ingenico/direct/sdk/domain/payment_product840_specific_output.rb', line 24 def to_h hash = super hash['billingAddress'] = @billing_address.to_h if @billing_address hash['customerAccount'] = @customer_account.to_h if @customer_account hash['customerAddress'] = @customer_address.to_h if @customer_address hash['protectionEligibility'] = @protection_eligibility.to_h if @protection_eligibility hash end |