Class: OnlinePayments::SDK::Domain::SurchargeSpecificInput
- Inherits:
-
DataObject
- Object
- DataObject
- OnlinePayments::SDK::Domain::SurchargeSpecificInput
- Defined in:
- lib/onlinepayments/sdk/domain/surcharge_specific_input.rb
Instance Attribute Summary collapse
-
#mode ⇒ String
The current value of mode.
-
#surcharge_amount ⇒ OnlinePayments::SDK::Domain::AmountOfMoney
The current value of surcharge_amount.
Instance Method Summary collapse
Methods inherited from DataObject
Instance Attribute Details
#mode ⇒ String
Returns the current value of mode.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/surcharge_specific_input.rb', line 12 def mode @mode end |
#surcharge_amount ⇒ OnlinePayments::SDK::Domain::AmountOfMoney
Returns the current value of surcharge_amount.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/surcharge_specific_input.rb', line 12 def surcharge_amount @surcharge_amount end |
Instance Method Details
#from_hash(hash) ⇒ Object
26 27 28 29 30 31 32 33 34 35 |
# File 'lib/onlinepayments/sdk/domain/surcharge_specific_input.rb', line 26 def from_hash(hash) super if hash.has_key? 'mode' @mode = hash['mode'] end if hash.has_key? 'surchargeAmount' raise TypeError, "value '%s' is not a Hash" % [hash['surchargeAmount']] unless hash['surchargeAmount'].is_a? Hash @surcharge_amount = OnlinePayments::SDK::Domain::AmountOfMoney.new_from_hash(hash['surchargeAmount']) end end |
#to_h ⇒ Hash
19 20 21 22 23 24 |
# File 'lib/onlinepayments/sdk/domain/surcharge_specific_input.rb', line 19 def to_h hash = super hash['mode'] = @mode unless @mode.nil? hash['surchargeAmount'] = @surcharge_amount.to_h unless @surcharge_amount.nil? hash end |