Class: OnlinePayments::SDK::Domain::SurchargeSpecificOutput

Inherits:
OnlinePayments::SDK::DataObject show all
Defined in:
lib/onlinepayments/sdk/domain/surcharge_specific_output.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#modeString

Returns the current value of mode.

Returns:

  • (String)

    the current value of mode



14
15
16
# File 'lib/onlinepayments/sdk/domain/surcharge_specific_output.rb', line 14

def mode
  @mode
end

#surcharge_amountOnlinePayments::SDK::Domain::AmountOfMoney

Returns the current value of surcharge_amount.

Returns:



14
15
16
# File 'lib/onlinepayments/sdk/domain/surcharge_specific_output.rb', line 14

def surcharge_amount
  @surcharge_amount
end

#surcharge_rateOnlinePayments::SDK::Domain::SurchargeRate

Returns the current value of surcharge_rate.

Returns:



14
15
16
# File 'lib/onlinepayments/sdk/domain/surcharge_specific_output.rb', line 14

def surcharge_rate
  @surcharge_rate
end

Instance Method Details

#from_hash(hash) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/onlinepayments/sdk/domain/surcharge_specific_output.rb', line 28

def from_hash(hash)
  super
  @mode = hash['mode'] if hash.key? 'mode'
  if hash.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
  if hash.key? 'surchargeRate'
    raise TypeError, "value '%s' is not a Hash" % [hash['surchargeRate']] unless hash['surchargeRate'].is_a? Hash
    @surcharge_rate = OnlinePayments::SDK::Domain::SurchargeRate.new_from_hash(hash['surchargeRate'])
  end
end

#to_hHash

Returns:

  • (Hash)


20
21
22
23
24
25
26
# File 'lib/onlinepayments/sdk/domain/surcharge_specific_output.rb', line 20

def to_h
  hash = super
  hash['mode'] = @mode unless @mode.nil?
  hash['surchargeAmount'] = @surcharge_amount.to_h if @surcharge_amount
  hash['surchargeRate'] = @surcharge_rate.to_h if @surcharge_rate
  hash
end