Class: OnlinePayments::SDK::Domain::DccCardSource

Inherits:
OnlinePayments::SDK::DataObject show all
Defined in:
lib/onlinepayments/sdk/domain/dcc_card_source.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#cardOnlinePayments::SDK::Domain::CardInfo

Returns the current value of card.

Returns:



14
15
16
# File 'lib/onlinepayments/sdk/domain/dcc_card_source.rb', line 14

def card
  @card
end

#encrypted_customer_inputString

Returns the current value of encrypted_customer_input.

Returns:

  • (String)

    the current value of encrypted_customer_input



14
15
16
# File 'lib/onlinepayments/sdk/domain/dcc_card_source.rb', line 14

def encrypted_customer_input
  @encrypted_customer_input
end

#hosted_tokenization_idString

Returns the current value of hosted_tokenization_id.

Returns:

  • (String)

    the current value of hosted_tokenization_id



14
15
16
# File 'lib/onlinepayments/sdk/domain/dcc_card_source.rb', line 14

def hosted_tokenization_id
  @hosted_tokenization_id
end

#tokenString

Returns the current value of token.

Returns:

  • (String)

    the current value of token



14
15
16
# File 'lib/onlinepayments/sdk/domain/dcc_card_source.rb', line 14

def token
  @token
end

Instance Method Details

#from_hash(hash) ⇒ Object



30
31
32
33
34
35
36
37
38
39
# File 'lib/onlinepayments/sdk/domain/dcc_card_source.rb', line 30

def from_hash(hash)
  super
  if hash.key? 'card'
    raise TypeError, "value '%s' is not a Hash" % [hash['card']] unless hash['card'].is_a? Hash
    @card = OnlinePayments::SDK::Domain::CardInfo.new_from_hash(hash['card'])
  end
  @encrypted_customer_input = hash['encryptedCustomerInput'] if hash.key? 'encryptedCustomerInput'
  @hosted_tokenization_id = hash['hostedTokenizationId'] if hash.key? 'hostedTokenizationId'
  @token = hash['token'] if hash.key? 'token'
end

#to_hHash

Returns:

  • (Hash)


21
22
23
24
25
26
27
28
# File 'lib/onlinepayments/sdk/domain/dcc_card_source.rb', line 21

def to_h
  hash = super
  hash['card'] = @card.to_h if @card
  hash['encryptedCustomerInput'] = @encrypted_customer_input unless @encrypted_customer_input.nil?
  hash['hostedTokenizationId'] = @hosted_tokenization_id unless @hosted_tokenization_id.nil?
  hash['token'] = @token unless @token.nil?
  hash
end