Class: Worldline::Connect::SDK::V1::Domain::CompletePaymentCardPaymentMethodSpecificInput

Inherits:
Domain::DataObject
  • Object
show all
Defined in:
lib/worldline/connect/sdk/v1/domain/complete_payment_card_payment_method_specific_input.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#cardWorldline::Connect::SDK::V1::Domain::CardWithoutCvv

Returns the current value of card.

Returns:



14
15
16
# File 'lib/worldline/connect/sdk/v1/domain/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/worldline/connect/sdk/v1/domain/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 = Worldline::Connect::SDK::V1::Domain::CardWithoutCvv.new_from_hash(hash['card'])
  end
end

#to_hHash

Returns:

  • (Hash)


19
20
21
22
23
# File 'lib/worldline/connect/sdk/v1/domain/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