Class: OnlinePayments::SDK::Domain::CapturePaymentRequest

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#amountLong

Returns the current value of amount.

Returns:

  • (Long)

    the current value of amount



13
14
15
# File 'lib/onlinepayments/sdk/domain/capture_payment_request.rb', line 13

def amount
  @amount
end

#is_finaltrue/false

Returns the current value of is_final.

Returns:

  • (true/false)

    the current value of is_final



13
14
15
# File 'lib/onlinepayments/sdk/domain/capture_payment_request.rb', line 13

def is_final
  @is_final
end

#referencesOnlinePayments::SDK::Domain::PaymentReferences

Returns the current value of references.

Returns:



13
14
15
# File 'lib/onlinepayments/sdk/domain/capture_payment_request.rb', line 13

def references
  @references
end

Instance Method Details

#from_hash(hash) ⇒ Object



27
28
29
30
31
32
33
34
35
# File 'lib/onlinepayments/sdk/domain/capture_payment_request.rb', line 27

def from_hash(hash)
  super
  @amount = hash['amount'] if hash.key? 'amount'
  @is_final = hash['isFinal'] if hash.key? 'isFinal'
  if hash.key? 'references'
    raise TypeError, "value '%s' is not a Hash" % [hash['references']] unless hash['references'].is_a? Hash
    @references = OnlinePayments::SDK::Domain::PaymentReferences.new_from_hash(hash['references'])
  end
end

#to_hHash

Returns:

  • (Hash)


19
20
21
22
23
24
25
# File 'lib/onlinepayments/sdk/domain/capture_payment_request.rb', line 19

def to_h
  hash = super
  hash['amount'] = @amount unless @amount.nil?
  hash['isFinal'] = @is_final unless @is_final.nil?
  hash['references'] = @references.to_h if @references
  hash
end