Class: OnlinePayments::SDK::Domain::PaymentReferences

Inherits:
OnlinePayments::SDK::DataObject show all
Defined in:
lib/onlinepayments/sdk/domain/payment_references.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#merchant_parametersString

Returns the current value of merchant_parameters.

Returns:

  • (String)

    the current value of merchant_parameters



11
12
13
# File 'lib/onlinepayments/sdk/domain/payment_references.rb', line 11

def merchant_parameters
  @merchant_parameters
end

#merchant_referenceString

Returns the current value of merchant_reference.

Returns:

  • (String)

    the current value of merchant_reference



11
12
13
# File 'lib/onlinepayments/sdk/domain/payment_references.rb', line 11

def merchant_reference
  @merchant_reference
end

Instance Method Details

#from_hash(hash) ⇒ Object



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

def from_hash(hash)
  super
  @merchant_parameters = hash['merchantParameters'] if hash.key? 'merchantParameters'
  @merchant_reference = hash['merchantReference'] if hash.key? 'merchantReference'
end

#to_hHash

Returns:

  • (Hash)


16
17
18
19
20
21
# File 'lib/onlinepayments/sdk/domain/payment_references.rb', line 16

def to_h
  hash = super
  hash['merchantParameters'] = @merchant_parameters unless @merchant_parameters.nil?
  hash['merchantReference'] = @merchant_reference unless @merchant_reference.nil?
  hash
end