Class: Ingenico::Direct::SDK::Domain::PaymentProductGroup

Inherits:
Ingenico::Direct::SDK::DataObject show all
Defined in:
lib/ingenico/direct/sdk/domain/payment_product_group.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Direct::SDK::DataObject

new_from_hash

Instance Attribute Details

#account_on_fileIngenico::Direct::SDK::Domain::AccountOnFile

Returns the current value of account_on_file.

Returns:



16
17
18
# File 'lib/ingenico/direct/sdk/domain/payment_product_group.rb', line 16

def 
  @account_on_file
end

#display_hintsIngenico::Direct::SDK::Domain::PaymentProductDisplayHints

Returns the current value of display_hints.

Returns:



16
17
18
# File 'lib/ingenico/direct/sdk/domain/payment_product_group.rb', line 16

def display_hints
  @display_hints
end

#display_hints_listArray<Ingenico::Direct::SDK::Domain::PaymentProductDisplayHints>

Returns the current value of display_hints_list.

Returns:



16
17
18
# File 'lib/ingenico/direct/sdk/domain/payment_product_group.rb', line 16

def display_hints_list
  @display_hints_list
end

#idString

Returns the current value of id.

Returns:

  • (String)

    the current value of id



16
17
18
# File 'lib/ingenico/direct/sdk/domain/payment_product_group.rb', line 16

def id
  @id
end

Instance Method Details

#from_hash(hash) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/ingenico/direct/sdk/domain/payment_product_group.rb', line 32

def from_hash(hash)
  super
  if hash.key? 'accountOnFile'
    raise TypeError, "value '%s' is not a Hash" % [hash['accountOnFile']] unless hash['accountOnFile'].is_a? Hash
    @account_on_file = Ingenico::Direct::SDK::Domain::AccountOnFile.new_from_hash(hash['accountOnFile'])
  end
  if hash.key? 'displayHints'
    raise TypeError, "value '%s' is not a Hash" % [hash['displayHints']] unless hash['displayHints'].is_a? Hash
    @display_hints = Ingenico::Direct::SDK::Domain::PaymentProductDisplayHints.new_from_hash(hash['displayHints'])
  end
  if hash.key? 'displayHintsList'
    raise TypeError, "value '%s' is not an Array" % [hash['displayHintsList']] unless hash['displayHintsList'].is_a? Array
    @display_hints_list = []
    hash['displayHintsList'].each do |e|
      @display_hints_list << Ingenico::Direct::SDK::Domain::PaymentProductDisplayHints.new_from_hash(e)
    end
  end
  @id = hash['id'] if hash.key? 'id'
end

#to_hHash

Returns:

  • (Hash)


23
24
25
26
27
28
29
30
# File 'lib/ingenico/direct/sdk/domain/payment_product_group.rb', line 23

def to_h
  hash = super
  hash['accountOnFile'] = @account_on_file.to_h if @account_on_file
  hash['displayHints'] = @display_hints.to_h if @display_hints
  hash['displayHintsList'] = @display_hints_list.collect(&:to_h) if @display_hints_list
  hash['id'] = @id unless @id.nil?
  hash
end