From 5d66ee8db7b7c0f05eec7df119388c8eb0a622ee Mon Sep 17 00:00:00 2001 From: lrodham Date: Thu, 21 Sep 2017 00:14:44 +0100 Subject: [PATCH] SAVEPOINT --- commands/get_orders.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/commands/get_orders.go b/commands/get_orders.go index 92d4918..4b46e35 100644 --- a/commands/get_orders.go +++ b/commands/get_orders.go @@ -203,6 +203,7 @@ type Transaction struct { OrderLineItemID string ExtendedOrderID string eBayPlusTransaction bool + Buyer Buyer } type TransactionArray struct { XMLName xml.Name `xml:"TransactionArray"` @@ -430,3 +431,9 @@ type CheckoutStatus struct { PaymentMethod string Status string } + +type Buyer struct { + Email string + UserFirstName string + UserLastName string +}