Class: OnlinePayments::SDK::Domain::CreateTokenRequest
- Inherits:
-
DataObject
- Object
- 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.
-
#encrypted_customer_input ⇒ String
The current value of encrypted_customer_input.
-
#payment_product_id ⇒ Integer
The current value of payment_product_id.
Instance Method Summary collapse
Methods inherited from DataObject
Instance Attribute Details
#card ⇒ OnlinePayments::SDK::Domain::TokenCardSpecificInput
Returns the current value of card.
13 14 15 |
# File 'lib/onlinepayments/sdk/domain/create_token_request.rb', line 13 def card @card end |
#encrypted_customer_input ⇒ String
Returns the current value of encrypted_customer_input.
13 14 15 |
# File 'lib/onlinepayments/sdk/domain/create_token_request.rb', line 13 def encrypted_customer_input @encrypted_customer_input end |
#payment_product_id ⇒ Integer
Returns the current value of payment_product_id.
13 14 15 |
# File 'lib/onlinepayments/sdk/domain/create_token_request.rb', line 13 def payment_product_id @payment_product_id end |
Instance Method Details
#from_hash(hash) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/onlinepayments/sdk/domain/create_token_request.rb', line 30 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::TokenCardSpecificInput.new_from_hash(hash['card']) end if hash.has_key? 'encryptedCustomerInput' @encrypted_customer_input = hash['encryptedCustomerInput'] end if hash.has_key? 'paymentProductId' @payment_product_id = hash['paymentProductId'] end end |
#to_h ⇒ Hash
22 23 24 25 26 27 28 |
# File 'lib/onlinepayments/sdk/domain/create_token_request.rb', line 22 def to_h hash = super hash['card'] = @card.to_h unless @card.nil? hash['encryptedCustomerInput'] = @encrypted_customer_input unless @encrypted_customer_input.nil? hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil? hash end |