Merge pull request #58 from cwebley/add-payee

add payee struct to Transaction
This commit is contained in:
Alex Pliutau 2018-05-04 09:56:38 +07:00 committed by GitHub
commit 07b625244a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -514,6 +514,12 @@ type (
PaymentOptions *PaymentOptions `json:"payment_options,omitempty"` PaymentOptions *PaymentOptions `json:"payment_options,omitempty"`
NotifyURL string `json:"notify_url,omitempty"` NotifyURL string `json:"notify_url,omitempty"`
OrderURL string `json:"order_url,omitempty"` OrderURL string `json:"order_url,omitempty"`
Payee *Payee `json:"payee,omitempty"`
}
//Payee struct
Payee struct {
Email string `json:"email"`
} }
// UserInfo struct // UserInfo struct