Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Latest commit

 

History

History
32 lines (26 loc) · 883 Bytes

ChargebackRequest.md

File metadata and controls

32 lines (26 loc) · 883 Bytes

Marqeta::ChargebackRequest

Properties

Name Type Description Notes
reason_description String Either 'reason_description' or 'reason_code' is required [optional]
reason_code String Either 'reason_code' or 'reason_description' is required [optional]
token String [optional]
transaction_token String
amount Float
memo String [optional]
credit_user Boolean [optional][default to true]
channel String

Example

require 'marqeta'

instance = Marqeta::ChargebackRequest.new(
  reason_description: null,
  reason_code: null,
  token: null,
  transaction_token: null,
  amount: null,
  memo: null,
  credit_user: null,
  channel: null
)