Class: OnlinePayments::SDK::Domain::CardPaymentMethodSpecificOutputSummary
- Inherits:
-
DataObject
- Object
- DataObject
- OnlinePayments::SDK::Domain::CardPaymentMethodSpecificOutputSummary
- Defined in:
- lib/onlinepayments/sdk/domain/card_payment_method_specific_output_summary.rb
Instance Attribute Summary collapse
-
#card ⇒ OnlinePayments::SDK::Domain::CardPaymentMethodSpecificOutputSummaryCard
The current value of card.
-
#token ⇒ String
The current value of token.
Instance Method Summary collapse
Methods inherited from DataObject
Instance Attribute Details
#card ⇒ OnlinePayments::SDK::Domain::CardPaymentMethodSpecificOutputSummaryCard
Returns the current value of card.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/card_payment_method_specific_output_summary.rb', line 12 def card @card end |
#token ⇒ String
Returns the current value of token.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/card_payment_method_specific_output_summary.rb', line 12 def token @token end |
Instance Method Details
#from_hash(hash) ⇒ Object
26 27 28 29 30 31 32 33 34 35 |
# File 'lib/onlinepayments/sdk/domain/card_payment_method_specific_output_summary.rb', line 26 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::CardPaymentMethodSpecificOutputSummaryCard.new_from_hash(hash['card']) end if hash.has_key? 'token' @token = hash['token'] end end |
#to_h ⇒ Hash
19 20 21 22 23 24 |
# File 'lib/onlinepayments/sdk/domain/card_payment_method_specific_output_summary.rb', line 19 def to_h hash = super hash['card'] = @card.to_h unless @card.nil? hash['token'] = @token unless @token.nil? hash end |