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

Inherits:
DataObject
  • Object
show all
Defined in:
lib/onlinepayments/sdk/domain/dcc_card_source.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from 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



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/onlinepayments/sdk/domain/dcc_card_source.rb', line 34

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 = OnlinePayments::SDK::Domain::CardInfo.new_from_hash(hash['card'])
  end
  if hash.has_key? 'encryptedCustomerInput'
    @encrypted_customer_input = hash['encryptedCustomerInput']
  end
  if hash.has_key? 'hostedTokenizationId'
    @hosted_tokenization_id = hash['hostedTokenizationId']
  end
  if hash.has_key? 'token'
    @token = hash['token']
  end
end

#to_hHash

Returns:

  • (Hash)


25
26
27
28
29
30
31
32
# File 'lib/onlinepayments/sdk/domain/dcc_card_source.rb', line 25

def to_h
  hash = super
  hash['card'] = @card.to_h unless @card.nil?
  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