Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 449 Bytes

OrderRefundRequest.md

File metadata and controls

22 lines (16 loc) · 449 Bytes

Conekta::OrderRefundRequest

Properties

Name Type Description Notes
amount Integer Amount to be refunded in cents
expires_at Integer [optional]
reason String Reason for the refund

Example

require 'conekta'

instance = Conekta::OrderRefundRequest.new(
  amount: 500,
  expires_at: 1553273553,
  reason: suspected_fraud
)