Class: OnlinePayments::SDK::Domain::CreateTokenRequest
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::CreateTokenRequest
- Defined in:
- lib/onlinepayments/sdk/domain/create_token_request.rb
Instance Attribute Summary collapse
-
#card ⇒ OnlinePayments::SDK::Domain::TokenCardSpecificInput
The current value of card.
-
#payment_product_id ⇒ Integer
The current value of payment_product_id.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#card ⇒ OnlinePayments::SDK::Domain::TokenCardSpecificInput
Returns the current value of card.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/create_token_request.rb', line 12 def card @card end |
#payment_product_id ⇒ Integer
Returns the current value of payment_product_id.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/create_token_request.rb', line 12 def payment_product_id @payment_product_id end |
Instance Method Details
#from_hash(hash) ⇒ Object
24 25 26 27 28 29 30 31 |
# File 'lib/onlinepayments/sdk/domain/create_token_request.rb', line 24 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::TokenCardSpecificInput.new_from_hash(hash['card']) end @payment_product_id = hash['paymentProductId'] if hash.key? 'paymentProductId' end |
#to_h ⇒ Hash
17 18 19 20 21 22 |
# File 'lib/onlinepayments/sdk/domain/create_token_request.rb', line 17 def to_h hash = super hash['card'] = @card.to_h if @card hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil? hash end |