Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions transaction_reporting.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down