Class: OnlinePayments::SDK::Domain::AccountOnFileDisplayHints

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#label_templateArray<OnlinePayments::SDK::Domain::LabelTemplateElement>

Returns the current value of label_template.

Returns:



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

def label_template
  @label_template
end

#logoString

Returns the current value of logo.

Returns:

  • (String)

    the current value of logo



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

def 
  
end

Instance Method Details

#from_hash(hash) ⇒ Object



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

def from_hash(hash)
  super
  if hash.has_key? 'labelTemplate'
    raise TypeError, "value '%s' is not an Array" % [hash['labelTemplate']] unless hash['labelTemplate'].is_a? Array
    @label_template = []
    hash['labelTemplate'].each do |e|
      @label_template << OnlinePayments::SDK::Domain::LabelTemplateElement.new_from_hash(e)
    end
  end
  if hash.has_key? 'logo'
     = hash['logo']
  end
end

#to_hHash

Returns:

  • (Hash)


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

def to_h
  hash = super
  hash['labelTemplate'] = @label_template.collect{|val| val.to_h} unless @label_template.nil?
  hash['logo'] =  unless .nil?
  hash
end