From 99da38f9c20bc1f0523677bf4ed1620112900fab Mon Sep 17 00:00:00 2001 From: Cameron Webley Date: Thu, 19 Apr 2018 16:56:10 -0500 Subject: [PATCH] add payee struct to Transaction --- types.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/types.go b/types.go index 05fc344..6496854 100644 --- a/types.go +++ b/types.go @@ -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