Skip to content

Commit

Permalink
Merge pull request #192 from rollick/amount-charged-back
Browse files Browse the repository at this point in the history
Add amountChargedBack to Payment
  • Loading branch information
VictorAvelar authored Jun 19, 2022
2 parents b7b0a6d + aead17e commit 4f183a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1941,6 +1941,7 @@ type Payment struct {
AmountRefunded *Amount `json:"amountRefunded,omitempty"`
AmountRemaining *Amount `json:"amountRemaining,omitempty"`
AmountCaptured *Amount `json:"amountCaptured,omitempty"`
AmountChargedBack *Amount `json:"amountChargedBack,omitempty"`
SettlementAmount *Amount `json:"settlementAmount,omitempty"`
ApplicationFee *ApplicationFee `json:"applicationFee,omitempty"`
Details *PaymentDetails `json:"details,omitempty"`
Expand Down
1 change: 1 addition & 0 deletions mollie/payments.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ type Payment struct {
AmountRefunded *Amount `json:"amountRefunded,omitempty"`
AmountRemaining *Amount `json:"amountRemaining,omitempty"`
AmountCaptured *Amount `json:"amountCaptured,omitempty"`
AmountChargedBack *Amount `json:"amountChargedBack,omitempty"`
SettlementAmount *Amount `json:"settlementAmount,omitempty"`
ApplicationFee *ApplicationFee `json:"applicationFee,omitempty"`
Details *PaymentDetails `json:"details,omitempty"`
Expand Down

0 comments on commit 4f183a7

Please sign in to comment.