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



14
15
16
# File 'lib/ingenico/connect/sdk/domain/payment/complete_payment_card_payment_method_specific_input.rb', line 14

def card
  @card
end

Instance Method Details

#from_hash(hash) ⇒ Object



25
26
27
28
29
30
31
# File 'lib/ingenico/connect/sdk/domain/payment/complete_payment_card_payment_method_specific_input.rb', line 25

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



19
20
21
22
23
# File 'lib/ingenico/connect/sdk/domain/payment/complete_payment_card_payment_method_specific_input.rb', line 19

def to_h
  hash = super
  hash['card'] = @card.to_h unless @card.nil?
  hash
end