Class: OnlinePayments::SDK::Domain::PaymentProductDisplayHints

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

new_from_hash

Instance Attribute Details

#display_orderInteger

Returns the current value of display_order.

Returns:

  • (Integer)

    the current value of display_order



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

def display_order
  @display_order
end

#labelString

Returns the current value of label.

Returns:

  • (String)

    the current value of label



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

def label
  @label
end

#logoString

Returns the current value of logo.

Returns:

  • (String)

    the current value of logo



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

def 
  
end

Instance Method Details

#from_hash(hash) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/onlinepayments/sdk/domain/payment_product_display_hints.rb', line 29

def from_hash(hash)
  super
  if hash.has_key? 'displayOrder'
    @display_order = hash['displayOrder']
  end
  if hash.has_key? 'label'
    @label = hash['label']
  end
  if hash.has_key? 'logo'
     = hash['logo']
  end
end

#to_hHash

Returns:

  • (Hash)


21
22
23
24
25
26
27
# File 'lib/onlinepayments/sdk/domain/payment_product_display_hints.rb', line 21

def to_h
  hash = super
  hash['displayOrder'] = @display_order unless @display_order.nil?
  hash['label'] = @label unless @label.nil?
  hash['logo'] =  unless .nil?
  hash
end