Skip to content

Commit

Permalink
Merge pull request #533 from drtz/expand-transfer-dest-payment
Browse files Browse the repository at this point in the history
Change Transfer.DestPayment from string to *Charge
  • Loading branch information
brandur-stripe authored Mar 14, 2018
2 parents a1f223a + 0ca7294 commit 9092a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ type Transfer struct {
Created int64 `json:"created"`
Currency Currency `json:"currency"`
Dest TransferDestination `json:"destination"`
DestPayment string `json:"destination_payment"`
DestPayment *Charge `json:"destination_payment"`
ID string `json:"id"`
Live bool `json:"livemode"`
Meta map[string]string `json:"metadata"`
Expand Down

0 comments on commit 9092a72

Please sign in to comment.