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 +}