Skip to content

Commit

Permalink
Add "OnBehalfOf" to subscription and charge
Browse files Browse the repository at this point in the history
It seems like `OnBehalfOf` was added to SubscriptionParams but not the subscription objects themselves.

Added to `Subscription` and `Charge`.
  • Loading branch information
klauspost committed Oct 3, 2018
1 parent c31a916 commit 74c5e6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions charge.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ type Charge struct {
Level3 ChargeLevel3 `json:"level3"`
Livemode bool `json:"livemode"`
Metadata map[string]string `json:"metadata"`
OnBehalfOf *Account `json:"on_behalf_of"`
Outcome *ChargeOutcome `json:"outcome"`
Paid bool `json:"paid"`
ReceiptEmail string `json:"receipt_email"`
Expand Down
1 change: 1 addition & 0 deletions sub.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ type Subscription struct {
ID string `json:"id"`
Items *SubscriptionItemList `json:"items"`
Metadata map[string]string `json:"metadata"`
OnBehalfOf *Account `json:"on_behalf_of"`
Plan *Plan `json:"plan"`
Quantity int64 `json:"quantity"`
Start int64 `json:"start"`
Expand Down

0 comments on commit 74c5e6e

Please sign in to comment.