add payee struct to Transaction

This commit is contained in:
Cameron Webley 2018-04-19 16:56:10 -05:00
parent b0bf27bc89
commit 99da38f9c2

View File

@ -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