Class: OnlinePayments::SDK::Domain::CompletePaymentCardPaymentMethodSpecificInput
- Inherits:
-
DataObject
- Object
- DataObject
- OnlinePayments::SDK::Domain::CompletePaymentCardPaymentMethodSpecificInput
- Defined in:
- lib/onlinepayments/sdk/domain/complete_payment_card_payment_method_specific_input.rb
Instance Attribute Summary collapse
-
#card ⇒ OnlinePayments::SDK::Domain::CardWithoutCvv
The current value of card.
Instance Method Summary collapse
Methods inherited from DataObject
Instance Attribute Details
#card ⇒ OnlinePayments::SDK::Domain::CardWithoutCvv
Returns the current value of card.
11 12 13 |
# File 'lib/onlinepayments/sdk/domain/complete_payment_card_payment_method_specific_input.rb', line 11 def card @card end |
Instance Method Details
#from_hash(hash) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/onlinepayments/sdk/domain/complete_payment_card_payment_method_specific_input.rb', line 22 def from_hash(hash) super if hash.has_key? 'card' raise TypeError, "value '%s' is not a Hash" % [hash['card']] unless hash['card'].is_a? Hash @card = OnlinePayments::SDK::Domain::CardWithoutCvv.new_from_hash(hash['card']) end end |
#to_h ⇒ Hash
16 17 18 19 20 |
# File 'lib/onlinepayments/sdk/domain/complete_payment_card_payment_method_specific_input.rb', line 16 def to_h hash = super hash['card'] = @card.to_h unless @card.nil? hash end |