Class: OnlinePayments::SDK::Domain::CaptureResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#capture_outputOnlinePayments::SDK::Domain::CaptureOutput

Returns the current value of capture_output.

Returns:



15
16
17
# File 'lib/onlinepayments/sdk/domain/capture_response.rb', line 15

def capture_output
  @capture_output
end

#idString

Returns the current value of id.

Returns:

  • (String)

    the current value of id



15
16
17
# File 'lib/onlinepayments/sdk/domain/capture_response.rb', line 15

def id
  @id
end

#statusString

Returns the current value of status.

Returns:

  • (String)

    the current value of status



15
16
17
# File 'lib/onlinepayments/sdk/domain/capture_response.rb', line 15

def status
  @status
end

#status_outputOnlinePayments::SDK::Domain::CaptureStatusOutput

Returns the current value of status_output.

Returns:



15
16
17
# File 'lib/onlinepayments/sdk/domain/capture_response.rb', line 15

def status_output
  @status_output
end

Instance Method Details

#from_hash(hash) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/onlinepayments/sdk/domain/capture_response.rb', line 31

def from_hash(hash)
  super
  if hash.key? 'captureOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['captureOutput']] unless hash['captureOutput'].is_a? Hash
    @capture_output = OnlinePayments::SDK::Domain::CaptureOutput.new_from_hash(hash['captureOutput'])
  end
  @id = hash['id'] if hash.key? 'id'
  @status = hash['status'] if hash.key? 'status'
  if hash.key? 'statusOutput'
    raise TypeError, "value '%s' is not a Hash" % [hash['statusOutput']] unless hash['statusOutput'].is_a? Hash
    @status_output = OnlinePayments::SDK::Domain::CaptureStatusOutput.new_from_hash(hash['statusOutput'])
  end
end

#to_hHash

Returns:

  • (Hash)


22
23
24
25
26
27
28
29
# File 'lib/onlinepayments/sdk/domain/capture_response.rb', line 22

def to_h
  hash = super
  hash['captureOutput'] = @capture_output.to_h if @capture_output
  hash['id'] = @id unless @id.nil?
  hash['status'] = @status unless @status.nil?
  hash['statusOutput'] = @status_output.to_h if @status_output
  hash
end