Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 521 Bytes

ChargeRequest.md

File metadata and controls

22 lines (16 loc) · 521 Bytes

Conekta::ChargeRequest

Properties

Name Type Description Notes
amount Integer Amount to be charged in cents [optional]
payment_method ChargeRequestPaymentMethod
reference_id String Custom reference to add to the charge [optional]

Example

require 'conekta'

instance = Conekta::ChargeRequest.new(
  amount: 40000,
  payment_method: null,
  reference_id: null
)