Skip to content

Commit

Permalink
Merge pull request plutov#58 from cwebley/add-payee
Browse files Browse the repository at this point in the history
add payee struct to Transaction
  • Loading branch information
plutov authored May 4, 2018
2 parents b0bf27b + 99da38f commit 07b6252
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,12 @@ type (
PaymentOptions *PaymentOptions `json:"payment_options,omitempty"`
NotifyURL string `json:"notify_url,omitempty"`
OrderURL string `json:"order_url,omitempty"`
Payee *Payee `json:"payee,omitempty"`
}

//Payee struct
Payee struct {
Email string `json:"email"`
}

// UserInfo struct
Expand Down

0 comments on commit 07b6252

Please sign in to comment.