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"`