Class: OnlinePayments::SDK::Domain::MerchantAction
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::MerchantAction
- Defined in:
- lib/onlinepayments/sdk/domain/merchant_action.rb
Instance Attribute Summary collapse
-
#action_type ⇒ String
The current value of action_type.
-
#redirect_data ⇒ OnlinePayments::SDK::Domain::RedirectData
The current value of redirect_data.
-
#show_form_data ⇒ OnlinePayments::SDK::Domain::ShowFormData
The current value of show_form_data.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#action_type ⇒ String
Returns the current value of action_type.
14 15 16 |
# File 'lib/onlinepayments/sdk/domain/merchant_action.rb', line 14 def action_type @action_type end |
#redirect_data ⇒ OnlinePayments::SDK::Domain::RedirectData
Returns the current value of redirect_data.
14 15 16 |
# File 'lib/onlinepayments/sdk/domain/merchant_action.rb', line 14 def redirect_data @redirect_data end |
#show_form_data ⇒ OnlinePayments::SDK::Domain::ShowFormData
Returns the current value of show_form_data.
14 15 16 |
# File 'lib/onlinepayments/sdk/domain/merchant_action.rb', line 14 def show_form_data @show_form_data 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/merchant_action.rb', line 28 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 = OnlinePayments::SDK::Domain::RedirectData.new_from_hash(hash['redirectData']) end if hash.key? 'showFormData' raise TypeError, "value '%s' is not a Hash" % [hash['showFormData']] unless hash['showFormData'].is_a? Hash @show_form_data = OnlinePayments::SDK::Domain::ShowFormData.new_from_hash(hash['showFormData']) end end |
#to_h ⇒ Hash
20 21 22 23 24 25 26 |
# File 'lib/onlinepayments/sdk/domain/merchant_action.rb', line 20 def to_h hash = super hash['actionType'] = @action_type unless @action_type.nil? hash['redirectData'] = @redirect_data.to_h if @redirect_data hash['showFormData'] = @show_form_data.to_h if @show_form_data hash end |