Class: Ingenico::Direct::SDK::Domain::PaymentProductDisplayHints
- Inherits:
-
Ingenico::Direct::SDK::DataObject
- Object
- Ingenico::Direct::SDK::DataObject
- Ingenico::Direct::SDK::Domain::PaymentProductDisplayHints
- Defined in:
- lib/ingenico/direct/sdk/domain/payment_product_display_hints.rb
Instance Attribute Summary collapse
-
#display_order ⇒ Integer
The current value of display_order.
-
#label ⇒ String
The current value of label.
-
#logo ⇒ String
The current value of logo.
Instance Method Summary collapse
Methods inherited from Ingenico::Direct::SDK::DataObject
Instance Attribute Details
#display_order ⇒ Integer
Returns the current value of display_order.
13 14 15 |
# File 'lib/ingenico/direct/sdk/domain/payment_product_display_hints.rb', line 13 def display_order @display_order end |
#label ⇒ String
Returns the current value of label.
13 14 15 |
# File 'lib/ingenico/direct/sdk/domain/payment_product_display_hints.rb', line 13 def label @label end |
#logo ⇒ String
Returns the current value of logo.
13 14 15 |
# File 'lib/ingenico/direct/sdk/domain/payment_product_display_hints.rb', line 13 def logo @logo end |
Instance Method Details
#from_hash(hash) ⇒ Object
27 28 29 30 31 32 |
# File 'lib/ingenico/direct/sdk/domain/payment_product_display_hints.rb', line 27 def from_hash(hash) super @display_order = hash['displayOrder'] if hash.key? 'displayOrder' @label = hash['label'] if hash.key? 'label' @logo = hash['logo'] if hash.key? 'logo' end |
#to_h ⇒ Hash
19 20 21 22 23 24 25 |
# File 'lib/ingenico/direct/sdk/domain/payment_product_display_hints.rb', line 19 def to_h hash = super hash['displayOrder'] = @display_order unless @display_order.nil? hash['label'] = @label unless @label.nil? hash['logo'] = @logo unless @logo.nil? hash end |