Class: Ingenico::Connect::SDK::Domain::Payment::CompletePaymentCardPaymentMethodSpecificInput
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Payment::CompletePaymentCardPaymentMethodSpecificInput
- Defined in:
- lib/ingenico/connect/sdk/domain/payment/complete_payment_card_payment_method_specific_input.rb
Instance Attribute Summary collapse
-
#card ⇒ Ingenico::Connect::SDK::Domain::Definitions::CardWithoutCvv
The current value of card.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#card ⇒ Ingenico::Connect::SDK::Domain::Definitions::CardWithoutCvv
Returns the current value of card.
13 14 15 |
# File 'lib/ingenico/connect/sdk/domain/payment/complete_payment_card_payment_method_specific_input.rb', line 13 def card @card end |
Instance Method Details
#from_hash(hash) ⇒ Object
24 25 26 27 28 29 30 |
# File 'lib/ingenico/connect/sdk/domain/payment/complete_payment_card_payment_method_specific_input.rb', line 24 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 = Ingenico::Connect::SDK::Domain::Definitions::CardWithoutCvv.new_from_hash(hash['card']) end end |
#to_h ⇒ Hash
18 19 20 21 22 |
# File 'lib/ingenico/connect/sdk/domain/payment/complete_payment_card_payment_method_specific_input.rb', line 18 def to_h hash = super hash['card'] = @card.to_h unless @card.nil? hash end |