Class: OnlinePayments::SDK::Domain::MandateMerchantAction

Inherits:
DataObject
  • Object
show all
Defined in:
lib/onlinepayments/sdk/domain/mandate_merchant_action.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#action_typeString



12
13
14
# File 'lib/onlinepayments/sdk/domain/mandate_merchant_action.rb', line 12

def action_type
  @action_type
end

#redirect_dataOnlinePayments::SDK::Domain::MandateRedirectData



12
13
14
# File 'lib/onlinepayments/sdk/domain/mandate_merchant_action.rb', line 12

def redirect_data
  @redirect_data
end

Instance Method Details

#from_hash(hash) ⇒ Object



26
27
28
29
30
31
32
33
34
35
# File 'lib/onlinepayments/sdk/domain/mandate_merchant_action.rb', line 26

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 = OnlinePayments::SDK::Domain::MandateRedirectData.new_from_hash(hash['redirectData'])
  end
end

#to_hHash



19
20
21
22
23
24
# File 'lib/onlinepayments/sdk/domain/mandate_merchant_action.rb', line 19

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