SAVEPOINT

This commit is contained in:
2017-09-21 00:14:44 +01:00
parent 704805e7b4
commit 5d66ee8db7

View File

@@ -203,6 +203,7 @@ type Transaction struct {
OrderLineItemID string OrderLineItemID string
ExtendedOrderID string ExtendedOrderID string
eBayPlusTransaction bool eBayPlusTransaction bool
Buyer Buyer
} }
type TransactionArray struct { type TransactionArray struct {
XMLName xml.Name `xml:"TransactionArray"` XMLName xml.Name `xml:"TransactionArray"`
@@ -430,3 +431,9 @@ type CheckoutStatus struct {
PaymentMethod string PaymentMethod string
Status string Status string
} }
type Buyer struct {
Email string
UserFirstName string
UserLastName string
}