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: src/AmazonPHP/SellingPartner/Api/AwdApi/WarehousingAndDistributionSDK.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -344,12 +344,12 @@ public function listInboundShipments(AccessToken $accessToken, string $region, ?
344
344
* @param null|string $shipment_status Filter by inbound shipment status. (optional)
345
345
* @param null|\DateTimeInterface $updated_after List the inbound shipments that were updated after a certain time (inclusive). The date must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format. (optional)
346
346
* @param null|\DateTimeInterface $updated_before List the inbound shipments that were updated before a certain time (inclusive). The date must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format. (optional)
347
-
* @param int $max_results Maximum number of results to return. (optional, default to 25)
347
+
* @param null|int $max_results Maximum number of results to return. (optional, default to 25)
348
348
* @param null|string $next_token Token to retrieve the next set of paginated results. (optional)
if ($max_results !== null && $max_results > 200) {
355
355
thrownewInvalidArgumentException('invalid value for "$max_results" when calling AwdApi.listInboundShipments, must be smaller than or equal to 200.');
@@ -589,11 +589,11 @@ public function listInventory(AccessToken $accessToken, string $region, ?string
589
589
* @param null|string $sort_order Sort the response in `ASCENDING` or `DESCENDING` order. (optional)
590
590
* @param null|string $details Set to `SHOW` to return summaries with additional inventory details. Defaults to `HIDE,` which returns only inventory summary totals. (optional)
591
591
* @param null|string $next_token Token to retrieve the next set of paginated results. (optional)
592
-
* @param int $max_results Maximum number of results to return. (optional, default to 25)
592
+
* @param null|int $max_results Maximum number of results to return. (optional, default to 25)
0 commit comments