Class: OnlinePayments::SDK::Domain::SepaDirectDebitPaymentMethodSpecificInput
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::SepaDirectDebitPaymentMethodSpecificInput
- Defined in:
- lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_input.rb
Instance Attribute Summary collapse
-
#payment_product771_specific_input ⇒ OnlinePayments::SDK::Domain::SepaDirectDebitPaymentProduct771SpecificInput
The current value of payment_product771_specific_input.
-
#payment_product_id ⇒ Integer
The current value of payment_product_id.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#payment_product771_specific_input ⇒ OnlinePayments::SDK::Domain::SepaDirectDebitPaymentProduct771SpecificInput
Returns the current value of payment_product771_specific_input.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_input.rb', line 12 def payment_product771_specific_input @payment_product771_specific_input end |
#payment_product_id ⇒ Integer
Returns the current value of payment_product_id.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_input.rb', line 12 def payment_product_id @payment_product_id end |
Instance Method Details
#from_hash(hash) ⇒ Object
24 25 26 27 28 29 30 31 |
# File 'lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_input.rb', line 24 def from_hash(hash) super if hash.key? 'paymentProduct771SpecificInput' raise TypeError, "value '%s' is not a Hash" % [hash['paymentProduct771SpecificInput']] unless hash['paymentProduct771SpecificInput'].is_a? Hash @payment_product771_specific_input = OnlinePayments::SDK::Domain::SepaDirectDebitPaymentProduct771SpecificInput.new_from_hash(hash['paymentProduct771SpecificInput']) end @payment_product_id = hash['paymentProductId'] if hash.key? 'paymentProductId' end |
#to_h ⇒ Hash
17 18 19 20 21 22 |
# File 'lib/onlinepayments/sdk/domain/sepa_direct_debit_payment_method_specific_input.rb', line 17 def to_h hash = super hash['paymentProduct771SpecificInput'] = @payment_product771_specific_input.to_h if @payment_product771_specific_input hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil? hash end |