Class: Ingenico::Connect::SDK::Domain::Payment::CompletePaymentCardPaymentMethodSpecificInput

Inherits:
Ingenico::Connect::SDK::DataObject show all
Defined in:
lib/ingenico/connect/sdk/domain/payment/complete_payment_card_payment_method_specific_input.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Connect::SDK::DataObject

new_from_hash

Instance Attribute Details

#cardIngenico::Connect::SDK::Domain::Definitions::CardWithoutCvv

Returns the current value of card.

Returns:



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_hHash

Returns:

  • (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