Class: Worldline::Connect::SDK::V1::Domain::RedirectPaymentProduct4101SpecificInputBase

Inherits:
AbstractRedirectPaymentProduct4101SpecificInput show all
Defined in:
lib/worldline/connect/sdk/v1/domain/redirect_payment_product4101_specific_input_base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#display_nameString

Returns the current value of display_name.

Returns:

  • (String)

    the current value of display_name



13
14
15
# File 'lib/worldline/connect/sdk/v1/domain/redirect_payment_product4101_specific_input_base.rb', line 13

def display_name
  @display_name
end

Instance Method Details

#from_hash(hash) ⇒ Object



24
25
26
27
28
29
# File 'lib/worldline/connect/sdk/v1/domain/redirect_payment_product4101_specific_input_base.rb', line 24

def from_hash(hash)
  super
  if hash.has_key? 'displayName'
    @display_name = hash['displayName']
  end
end

#to_hHash

Returns:

  • (Hash)


18
19
20
21
22
# File 'lib/worldline/connect/sdk/v1/domain/redirect_payment_product4101_specific_input_base.rb', line 18

def to_h
  hash = super
  hash['displayName'] = @display_name unless @display_name.nil?
  hash
end