Class: Worldline::Connect::SDK::V1::Domain::MandateMerchantAction
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::MandateMerchantAction
- Defined in:
- lib/worldline/connect/sdk/v1/domain/mandate_merchant_action.rb
Instance Attribute Summary collapse
-
#action_type ⇒ String
The current value of action_type.
-
#redirect_data ⇒ Worldline::Connect::SDK::V1::Domain::MandateRedirectData
The current value of redirect_data.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#action_type ⇒ String
Returns the current value of action_type.
15 16 17 |
# File 'lib/worldline/connect/sdk/v1/domain/mandate_merchant_action.rb', line 15 def action_type @action_type end |
#redirect_data ⇒ Worldline::Connect::SDK::V1::Domain::MandateRedirectData
Returns the current value of redirect_data.
15 16 17 |
# File 'lib/worldline/connect/sdk/v1/domain/mandate_merchant_action.rb', line 15 def redirect_data @redirect_data end |
Instance Method Details
#from_hash(hash) ⇒ Object
29 30 31 32 33 34 35 36 37 38 |
# File 'lib/worldline/connect/sdk/v1/domain/mandate_merchant_action.rb', line 29 def from_hash(hash) super if hash.has_key? 'actionType' @action_type = hash['actionType'] end if hash.has_key? 'redirectData' raise TypeError, "value '%s' is not a Hash" % [hash['redirectData']] unless hash['redirectData'].is_a? Hash @redirect_data = Worldline::Connect::SDK::V1::Domain::MandateRedirectData.new_from_hash(hash['redirectData']) end end |
#to_h ⇒ Hash
22 23 24 25 26 27 |
# File 'lib/worldline/connect/sdk/v1/domain/mandate_merchant_action.rb', line 22 def to_h hash = super hash['actionType'] = @action_type unless @action_type.nil? hash['redirectData'] = @redirect_data.to_h unless @redirect_data.nil? hash end |