Class: OnlinePayments::SDK::Domain::PaymentContext

Inherits:
DataObject
  • Object
show all
Defined in:
lib/onlinepayments/sdk/domain/payment_context.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#amount_of_moneyOnlinePayments::SDK::Domain::AmountOfMoney

Returns the current value of amount_of_money.

Returns:



13
14
15
# File 'lib/onlinepayments/sdk/domain/payment_context.rb', line 13

def amount_of_money
  @amount_of_money
end

#country_codeString

Returns the current value of country_code.

Returns:

  • (String)

    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_recurringtrue/false

Returns the current value of is_recurring.

Returns:

  • (true/false)

    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_hHash

Returns:

  • (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