Skip to content

Commit 7cecd56

Browse files
committed
Remove unnecessary modifications.json entry
1 parent ea7a274 commit 7cecd56

3 files changed

Lines changed: 0 additions & 17 deletions

File tree

resources/metadata/modifications.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,6 @@
117117
}
118118
}
119119
},
120-
{
121-
"action": "merge",
122-
"path": "components.schemas.BuyerInfo.properties",
123-
"value": {
124-
"BuyerEmail": {
125-
"type": "string",
126-
"description": "The anonymized email address of the buyer."
127-
}
128-
}
129-
},
130120
{
131121
"action": "merge",
132122
"path": "components.schemas.OrderBuyerInfo.properties",

resources/models/seller/orders/v0.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4010,10 +4010,6 @@
40104010
"PurchaseOrderNumber": {
40114011
"type": "string",
40124012
"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."
4013-
},
4014-
"BuyerEmail": {
4015-
"type": "string",
4016-
"description": "The anonymized email address of the buyer."
40174013
}
40184014
},
40194015
"description": "Buyer information for an order."

src/Seller/OrdersV0/Dto/OrderBuyerInfo.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ final class OrderBuyerInfo extends Dto
2121
'buyerCounty' => 'BuyerCounty',
2222
'buyerTaxInfo' => 'BuyerTaxInfo',
2323
'purchaseOrderNumber' => 'PurchaseOrderNumber',
24-
'buyerEmail' => 'BuyerEmail',
2524
];
2625

2726
/**
@@ -33,7 +32,6 @@ final class OrderBuyerInfo extends Dto
3332
* **Note**: This attribute is only available in the Brazil marketplace.
3433
* @param ?BuyerTaxInfo $buyerTaxInfo Tax information about the buyer.
3534
* @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.
36-
* @param ?string $buyerEmail The anonymized email address of the buyer.
3735
*/
3836
public function __construct(
3937
public string $amazonOrderId,
@@ -42,6 +40,5 @@ public function __construct(
4240
public ?string $buyerCounty = null,
4341
public ?BuyerTaxInfo $buyerTaxInfo = null,
4442
public ?string $purchaseOrderNumber = null,
45-
public ?string $buyerEmail = null,
4643
) {}
4744
}

0 commit comments

Comments
 (0)