Class: OnlinePayments::SDK::Domain::TokenResponse
- Inherits:
-
DataObject
- Object
- DataObject
- OnlinePayments::SDK::Domain::TokenResponse
- Defined in:
- lib/onlinepayments/sdk/domain/token_response.rb
Instance Attribute Summary collapse
-
#card ⇒ OnlinePayments::SDK::Domain::TokenCard
The current value of card.
-
#e_wallet ⇒ OnlinePayments::SDK::Domain::TokenEWallet
The current value of e_wallet.
-
#external_token_linked ⇒ OnlinePayments::SDK::Domain::ExternalTokenLinked
The current value of external_token_linked.
-
#id ⇒ String
The current value of id.
-
#is_temporary ⇒ true/false
The current value of is_temporary.
-
#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::TokenCard
Returns the current value of card.
18 19 20 |
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 18 def card @card end |
#e_wallet ⇒ OnlinePayments::SDK::Domain::TokenEWallet
Returns the current value of e_wallet.
18 19 20 |
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 18 def e_wallet @e_wallet end |
#external_token_linked ⇒ OnlinePayments::SDK::Domain::ExternalTokenLinked
Returns the current value of external_token_linked.
18 19 20 |
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 18 def external_token_linked @external_token_linked end |
#id ⇒ String
Returns the current value of id.
18 19 20 |
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 18 def id @id end |
#is_temporary ⇒ true/false
Returns the current value of is_temporary.
18 19 20 |
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 18 def is_temporary @is_temporary end |
#payment_product_id ⇒ Integer
Returns the current value of payment_product_id.
18 19 20 |
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 18 def payment_product_id @payment_product_id end |
Instance Method Details
#from_hash(hash) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 44 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::TokenCard.new_from_hash(hash['card']) end if hash.has_key? 'eWallet' raise TypeError, "value '%s' is not a Hash" % [hash['eWallet']] unless hash['eWallet'].is_a? Hash @e_wallet = OnlinePayments::SDK::Domain::TokenEWallet.new_from_hash(hash['eWallet']) end if hash.has_key? 'externalTokenLinked' raise TypeError, "value '%s' is not a Hash" % [hash['externalTokenLinked']] unless hash['externalTokenLinked'].is_a? Hash @external_token_linked = OnlinePayments::SDK::Domain::ExternalTokenLinked.new_from_hash(hash['externalTokenLinked']) end if hash.has_key? 'id' @id = hash['id'] end if hash.has_key? 'isTemporary' @is_temporary = hash['isTemporary'] end if hash.has_key? 'paymentProductId' @payment_product_id = hash['paymentProductId'] end end |
#to_h ⇒ Hash
33 34 35 36 37 38 39 40 41 42 |
# File 'lib/onlinepayments/sdk/domain/token_response.rb', line 33 def to_h hash = super hash['card'] = @card.to_h unless @card.nil? hash['eWallet'] = @e_wallet.to_h unless @e_wallet.nil? hash['externalTokenLinked'] = @external_token_linked.to_h unless @external_token_linked.nil? hash['id'] = @id unless @id.nil? hash['isTemporary'] = @is_temporary unless @is_temporary.nil? hash['paymentProductId'] = @payment_product_id unless @payment_product_id.nil? hash end |