Class: OnlinePayments::SDK::Domain::DccCardSource
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::DccCardSource
- Defined in:
- lib/onlinepayments/sdk/domain/dcc_card_source.rb
Instance Attribute Summary collapse
-
#card ⇒ OnlinePayments::SDK::Domain::CardInfo
The current value of card.
-
#encrypted_customer_input ⇒ String
The current value of encrypted_customer_input.
-
#hosted_tokenization_id ⇒ String
The current value of hosted_tokenization_id.
-
#token ⇒ String
The current value of token.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#card ⇒ OnlinePayments::SDK::Domain::CardInfo
Returns the current value of card.
14 15 16 |
# File 'lib/onlinepayments/sdk/domain/dcc_card_source.rb', line 14 def card @card end |
#encrypted_customer_input ⇒ String
Returns 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_id ⇒ String
Returns 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 |
#token ⇒ String
Returns 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_h ⇒ 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 |