Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 617 Bytes

File metadata and controls

22 lines (16 loc) · 617 Bytes

Komoju::CapturePaymentRequest

Properties

Name Type Description Notes
amount Integer The payment amount before tax, greater than or equal to 0, in the lowest denomination of the currency (e.g. cents for USD). [optional]
tax CapturePaymentRequestTax [optional]
platform_details PlatformDetails [optional]

Example

require 'komoju-sdk'

instance = Komoju::CapturePaymentRequest.new(
  amount: 1000,
  tax: null,
  platform_details: null
)