You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: resources/models/seller/orders/v0.json
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4258,6 +4258,10 @@
4258
4258
"PurchaseOrderNumber": {
4259
4259
"type": "string",
4260
4260
"description": "The purchase order (PO) number entered by the buyer at checkout. Only returned for orders where the buyer entered a PO number at checkout."
4261
+
},
4262
+
"BuyerEmail": {
4263
+
"type": "string",
4264
+
"description": "The anonymized email address of the buyer."
Copy file name to clipboardExpand all lines: src/Seller/OrdersV0/Dto/OrderBuyerInfo.php
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ final class OrderBuyerInfo extends Dto
20
20
'buyerCounty' => 'BuyerCounty',
21
21
'buyerTaxInfo' => 'BuyerTaxInfo',
22
22
'purchaseOrderNumber' => 'PurchaseOrderNumber',
23
+
'buyerEmail' => 'BuyerEmail',
23
24
];
24
25
25
26
/**
@@ -30,12 +31,14 @@ final class OrderBuyerInfo extends Dto
30
31
* **Note**: This attribute is only available in the Brazil marketplace.
31
32
* @param ?BuyerTaxInfo $buyerTaxInfo Tax information about the buyer.
32
33
* @param ?string $purchaseOrderNumber The purchase order (PO) number entered by the buyer at checkout. Only returned for orders where the buyer entered a PO number at checkout.
34
+
* @param ?string $buyerEmail The anonymized email address of the buyer.
0 commit comments