Class: Worldline::Connect::SDK::V1::Domain::OrderApprovePayment

Inherits:
Domain::DataObject show all
Defined in:
lib/worldline/connect/sdk/v1/domain/order_approve_payment.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#additional_inputWorldline::Connect::SDK::V1::Domain::AdditionalOrderInputAirlineData

Returns the current value of additional_input.

Returns:



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

def additional_input
  @additional_input
end

#customerWorldline::Connect::SDK::V1::Domain::CustomerApprovePayment

Returns the current value of customer.

Returns:



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

def customer
  @customer
end

#referencesWorldline::Connect::SDK::V1::Domain::OrderReferencesApprovePayment

Returns the current value of references.

Returns:



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

def references
  @references
end

Instance Method Details

#from_hash(hash) ⇒ Object



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/worldline/connect/sdk/v1/domain/order_approve_payment.rb', line 35

def from_hash(hash)
  super
  if hash.has_key? 'additionalInput'
    raise TypeError, "value '%s' is not a Hash" % [hash['additionalInput']] unless hash['additionalInput'].is_a? Hash
    @additional_input = Worldline::Connect::SDK::V1::Domain::AdditionalOrderInputAirlineData.new_from_hash(hash['additionalInput'])
  end
  if hash.has_key? 'customer'
    raise TypeError, "value '%s' is not a Hash" % [hash['customer']] unless hash['customer'].is_a? Hash
    @customer = Worldline::Connect::SDK::V1::Domain::CustomerApprovePayment.new_from_hash(hash['customer'])
  end
  if hash.has_key? 'references'
    raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash
    @references = Worldline::Connect::SDK::V1::Domain::OrderReferencesApprovePayment.new_from_hash(hash['references'])
  end
end

#to_hHash

Returns:

  • (Hash)


27
28
29
30
31
32
33
# File 'lib/worldline/connect/sdk/v1/domain/order_approve_payment.rb', line 27

def to_h
  hash = super
  hash['additionalInput'] = @additional_input.to_h unless @additional_input.nil?
  hash['customer'] = @customer.to_h unless @customer.nil?
  hash['references'] = @references.to_h unless @references.nil?
  hash
end