diff --git a/payment_transactions.go b/payment_transactions.go index 6631d58..23ffcbd 100644 --- a/payment_transactions.go +++ b/payment_transactions.go @@ -54,6 +54,9 @@ func (tranx NewTransaction) Refund() (*TransactionResponse, error) { TransactionType: "refundTransaction", Amount: tranx.Amount, RefTransId: tranx.RefTransId, + Payment: &Payment{ + CreditCard: tranx.CreditCard, + }, } response, err := SendTransactionRequest(new) return response, err