Class: OnlinePayments::SDK::Domain::PaymentContext
- Inherits:
-
DataObject
- Object
- DataObject
- OnlinePayments::SDK::Domain::PaymentContext
- Defined in:
- lib/onlinepayments/sdk/domain/payment_context.rb
Instance Attribute Summary collapse
-
#amount_of_money ⇒ OnlinePayments::SDK::Domain::AmountOfMoney
The current value of amount_of_money.
-
#country_code ⇒ String
The current value of country_code.
-
#is_recurring ⇒ true/false
The current value of is_recurring.
Instance Method Summary collapse
Methods inherited from DataObject
Instance Attribute Details
#amount_of_money ⇒ OnlinePayments::SDK::Domain::AmountOfMoney
Returns the current value of amount_of_money.
13 14 15 |
# File 'lib/onlinepayments/sdk/domain/payment_context.rb', line 13 def amount_of_money @amount_of_money end |
#country_code ⇒ String
Returns the current value of country_code.
13 14 15 |
# File 'lib/onlinepayments/sdk/domain/payment_context.rb', line 13 def country_code @country_code end |
#is_recurring ⇒ true/false
Returns the current value of is_recurring.
13 14 15 |
# File 'lib/onlinepayments/sdk/domain/payment_context.rb', line 13 def is_recurring @is_recurring 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/payment_context.rb', line 30 def from_hash(hash) super if hash.has_key? 'amountOfMoney' raise TypeError, "value '%s' is not a Hash" % [hash['amountOfMoney']] unless hash['amountOfMoney'].is_a? Hash @amount_of_money = OnlinePayments::SDK::Domain::AmountOfMoney.new_from_hash(hash['amountOfMoney']) end if hash.has_key? 'countryCode' @country_code = hash['countryCode'] end if hash.has_key? 'isRecurring' @is_recurring = hash['isRecurring'] end end |
#to_h ⇒ Hash
22 23 24 25 26 27 28 |
# File 'lib/onlinepayments/sdk/domain/payment_context.rb', line 22 def to_h hash = super hash['amountOfMoney'] = @amount_of_money.to_h unless @amount_of_money.nil? hash['countryCode'] = @country_code unless @country_code.nil? hash['isRecurring'] = @is_recurring unless @is_recurring.nil? hash end |