Class: Ingenico::Direct::SDK::Domain::MerchantAction
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::MerchantAction
- Defined in:
- lib/ingenico/direct/sdk/domain/merchant_action.rb
Instance Attribute Summary collapse
-
#action_type ⇒ String
The current value of action_type.
-
#redirect_data ⇒ Ingenico::Direct::SDK::Domain::RedirectData
The current value of redirect_data.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#action_type ⇒ String
Returns the current value of action_type.
13 14 15 |
# File 'lib/ingenico/direct/sdk/domain/merchant_action.rb', line 13 def action_type @action_type end |
#redirect_data ⇒ Ingenico::Direct::SDK::Domain::RedirectData
Returns the current value of redirect_data.
13 14 15 |
# File 'lib/ingenico/direct/sdk/domain/merchant_action.rb', line 13 def redirect_data @redirect_data end |
Instance Method Details
#from_hash(hash) ⇒ Object
25 26 27 28 29 30 31 32 |
# File 'lib/ingenico/direct/sdk/domain/merchant_action.rb', line 25 def from_hash(hash) super @action_type = hash['actionType'] if hash.key? 'actionType' if hash.key? 'redirectData' raise TypeError, "value '%s' is not a Hash" % [hash['redirectData']] unless hash['redirectData'].is_a? Hash @redirect_data = Ingenico::Direct::SDK::Domain::RedirectData.new_from_hash(hash['redirectData']) end end |
#to_h ⇒ Hash
18 19 20 21 22 23 |
# File 'lib/ingenico/direct/sdk/domain/merchant_action.rb', line 18 def to_h hash = super hash['actionType'] = @action_type unless @action_type.nil? hash['redirectData'] = @redirect_data.to_h if @redirect_data hash end |