From c61a0e23470ee3a5a95a7b45d799106d533d6a5e Mon Sep 17 00:00:00 2001 From: camillebqt <49369264+camillebqt@users.noreply.github.com> Date: Thu, 30 Apr 2020 12:33:02 -0500 Subject: [PATCH] Update transaction_reporting.go Hi, I added the Tax structure: amount, name and description in the type FullTransaction structure (lines 242 - 245). Regards. --- transaction_reporting.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/transaction_reporting.go b/transaction_reporting.go index 2b1b8a3..585b35c 100644 --- a/transaction_reporting.go +++ b/transaction_reporting.go @@ -239,6 +239,11 @@ type FullTransaction struct { RequestedAmountSpecified bool `json:"requestedAmountSpecified"` AuthAmount float64 `json:"authAmount"` SettleAmount float64 `json:"settleAmount"` + Tax struct { + Amount float64 `json:"amount"` + Name string `json:"name"` + Description string `json:"description"` + } `json:"tax"` PrepaidBalanceRemainingSpecified bool `json:"prepaidBalanceRemainingSpecified"` TaxExempt bool `json:"taxExempt"` TaxExemptSpecified bool `json:"taxExemptSpecified"`