Class: Worldline::Connect::SDK::V1::Domain::Payment

Inherits:
AbstractOrderStatus show all
Defined in:
lib/worldline/connect/sdk/v1/domain/payment.rb

Direct Known Subclasses

PaymentResponse

Instance Attribute Summary collapse

Attributes inherited from AbstractOrderStatus

#id

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#hosted_checkout_specific_outputWorldline::Connect::SDK::V1::Domain::HostedCheckoutSpecificOutput

Returns the current value of hosted_checkout_specific_output.

Returns:



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

def hosted_checkout_specific_output
  @hosted_checkout_specific_output
end

#payment_outputWorldline::Connect::SDK::V1::Domain::PaymentOutput

Returns the current value of payment_output.

Returns:



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

def payment_output
  @payment_output
end

#statusString

Returns the current value of status.

Returns:

  • (String)

    the current value of status



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

def status
  @status
end

#status_outputWorldline::Connect::SDK::V1::Domain::PaymentStatusOutput

Returns the current value of status_output.

Returns:



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

def status_output
  @status_output
end

Instance Method Details

#from_hash(hash) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/worldline/connect/sdk/v1/domain/payment.rb', line 39

def from_hash(hash)
  super
  if hash.has_key? 'hostedCheckoutSpecificOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['hostedCheckoutSpecificOutput']] unless hash['hostedCheckoutSpecificOutput'].is_a? Hash
    @hosted_checkout_specific_output = Worldline::Connect::SDK::V1::Domain::HostedCheckoutSpecificOutput.new_from_hash(hash['hostedCheckoutSpecificOutput'])
  end
  if hash.has_key? 'paymentOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['paymentOutput']] unless hash['paymentOutput'].is_a? Hash
    @payment_output = Worldline::Connect::SDK::V1::Domain::PaymentOutput.new_from_hash(hash['paymentOutput'])
  end
  if hash.has_key? 'status'
    @status = hash['status']
  end
  if hash.has_key? 'statusOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['statusOutput']] unless hash['statusOutput'].is_a? Hash
    @status_output = Worldline::Connect::SDK::V1::Domain::PaymentStatusOutput.new_from_hash(hash['statusOutput'])
  end
end

#to_hHash

Returns:

  • (Hash)


30
31
32
33
34
35
36
37
# File 'lib/worldline/connect/sdk/v1/domain/payment.rb', line 30

def to_h
  hash = super
  hash['hostedCheckoutSpecificOutput'] = @hosted_checkout_specific_output.to_h unless @hosted_checkout_specific_output.nil?
  hash['paymentOutput'] = @payment_output.to_h unless @payment_output.nil?
  hash['status'] = @status unless @status.nil?
  hash['statusOutput'] = @status_output.to_h unless @status_output.nil?
  hash
end