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/CatalogApi/CatalogItemSDK.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -268,14 +268,14 @@ public function getCatalogItemRequest(AccessToken $accessToken, string $region,
268
268
* @param null|string[] $keywords A comma-delimited list of words to search the Amazon catalog for. **Note:** Cannot be used with `identifiers`. (optional)
269
269
* @param null|string[] $brand_names A comma-delimited list of brand names to limit the search for `keywords`-based queries. **Note:** Cannot be used with `identifiers`. (optional)
270
270
* @param null|string[] $classification_ids A comma-delimited list of classification identifiers to limit the search for `keywords`-based queries. **Note:** Cannot be used with `identifiers`. (optional)
271
-
* @param int $page_size Number of results to be returned per page. (optional, default to 10)
271
+
* @param null|int $page_size Number of results to be returned per page. (optional, default to 10)
272
272
* @param null|string $page_token A token to fetch a certain page when there are multiple pages worth of results. (optional)
273
273
* @param null|string $keywords_locale The language of the keywords provided for `keywords`-based queries. Defaults to the primary locale of the marketplace. **Note:** Cannot be used with `identifiers`. (optional)
Copy file name to clipboardExpand all lines: src/AmazonPHP/SellingPartner/Api/DefaultApi/FinancesSDK.php
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -35,15 +35,15 @@ public function __construct(private readonly ClientInterface $client, private re
35
35
/**
36
36
* Operation listFinancialEventGroups.
37
37
*
38
-
* @param int $max_results_per_page The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the API responds with 'InvalidInput'. (optional, default to 100)
38
+
* @param null|int $max_results_per_page The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the API responds with 'InvalidInput'. (optional, default to 100)
39
39
* @param null|\DateTimeInterface $financial_event_group_started_before A date used for selecting financial event groups that opened before (but not at) a specified date and time, in ISO 8601 format. The date-time must be later than FinancialEventGroupStartedAfter and no later than two minutes before the request was submitted. If FinancialEventGroupStartedAfter and FinancialEventGroupStartedBefore are more than 180 days apart, no financial event groups are returned. (optional)
40
40
* @param null|\DateTimeInterface $financial_event_group_started_after A date used for selecting financial event groups that opened after (or at) a specified date and time, in ISO 8601 format. The date-time must be no later than two minutes before the request was submitted. (optional)
41
41
* @param null|string $next_token A string token returned in the response of your previous request. (optional)
@@ -253,15 +253,15 @@ public function listFinancialEventGroupsRequest(AccessToken $accessToken, string
253
253
/**
254
254
* Operation listFinancialEvents.
255
255
*
256
-
* @param int $max_results_per_page The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the API responds with 'InvalidInput'. (optional, default to 100)
256
+
* @param null|int $max_results_per_page The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the API responds with 'InvalidInput'. (optional, default to 100)
257
257
* @param null|\DateTimeInterface $posted_after A date used for selecting financial events posted after (or at) a specified time. The date-time must be no later than two minutes before the request was submitted, in ISO 8601 date time format. (optional)
258
258
* @param null|\DateTimeInterface $posted_before A date used for selecting financial events posted before (but not at) a specified time. The date-time must be later than PostedAfter and no later than two minutes before the request was submitted, in ISO 8601 date time format. If PostedAfter and PostedBefore are more than 180 days apart, no financial events are returned. You must specify the PostedAfter parameter if you specify the PostedBefore parameter. Default: Now minus two minutes. (optional)
259
259
* @param null|string $next_token A string token returned in the response of your previous request. (optional)
@@ -472,15 +472,15 @@ public function listFinancialEventsRequest(AccessToken $accessToken, string $reg
472
472
* Operation listFinancialEventsByGroupId.
473
473
*
474
474
* @param string $event_group_id The identifier of the financial event group to which the events belong. (required)
475
-
* @param int $max_results_per_page The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the API responds with 'InvalidInput'. (optional, default to 100)
475
+
* @param null|int $max_results_per_page The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the API responds with 'InvalidInput'. (optional, default to 100)
476
476
* @param null|\DateTimeInterface $posted_after A date used for selecting financial events posted after (or at) a specified time. The date-time **must** be more than two minutes before the time of the request, in ISO 8601 date time format. (optional)
477
477
* @param null|\DateTimeInterface $posted_before A date used for selecting financial events posted before (but not at) a specified time. The date-time must be later than `PostedAfter` and no later than two minutes before the request was submitted, in ISO 8601 date time format. If `PostedAfter` and `PostedBefore` are more than 180 days apart, no financial events are returned. You must specify the `PostedAfter` parameter if you specify the `PostedBefore` parameter. Default: Now minus two minutes. (optional)
478
478
* @param null|string $next_token A string token returned in the response of your previous request. (optional)
@@ -708,13 +708,13 @@ public function listFinancialEventsByGroupIdRequest(AccessToken $accessToken, st
708
708
* Operation listFinancialEventsByOrderId.
709
709
*
710
710
* @param string $order_id An Amazon-defined order identifier, in 3-7-7 format. (required)
711
-
* @param int $max_results_per_page The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the API responds with 'InvalidInput'. (optional, default to 100)
711
+
* @param null|int $max_results_per_page The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the API responds with 'InvalidInput'. (optional, default to 100)
712
712
* @param null|string $next_token A string token returned in the response of your previous request. (optional)
Copy file name to clipboardExpand all lines: src/AmazonPHP/SellingPartner/Api/DefinitionsApi/ProductTypesDefinitionsSDK.php
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -38,15 +38,15 @@ public function __construct(private readonly ClientInterface $client, private re
38
38
* @param string $product_type The Amazon product type name. (required)
39
39
* @param string[] $marketplace_ids A comma-delimited list of Amazon marketplace identifiers for the request. Note: This parameter is limited to one marketplaceId at this time. (required)
40
40
* @param null|string $seller_id A selling partner identifier. When provided, seller-specific requirements and values are populated within the product type definition schema, such as brand names associated with the selling partner. (optional)
41
-
* @param string $product_type_version The version of the Amazon product type to retrieve. Defaults to \"LATEST\",. Prerelease versions of product type definitions may be retrieved with \"RELEASE_CANDIDATE\". If no prerelease version is currently available, the \"LATEST\" live version will be provided. (optional, default to 'LATEST')
42
-
* @param string $requirements The name of the requirements set to retrieve requirements for. (optional, default to 'LISTING')
43
-
* @param string $requirements_enforced Identifies if the required attributes for a requirements set are enforced by the product type definition schema. Non-enforced requirements enable structural validation of individual attributes without all the required attributes being present (such as for partial updates). (optional, default to 'ENFORCED')
44
-
* @param string $locale Locale for retrieving display labels and other presentation details. Defaults to the default language of the first marketplace in the request. (optional, default to 'DEFAULT')
41
+
* @param null|string $product_type_version The version of the Amazon product type to retrieve. Defaults to \"LATEST\",. Prerelease versions of product type definitions may be retrieved with \"RELEASE_CANDIDATE\". If no prerelease version is currently available, the \"LATEST\" live version will be provided. (optional, default to 'LATEST')
42
+
* @param null|string $requirements The name of the requirements set to retrieve requirements for. (optional, default to 'LISTING')
43
+
* @param null|string $requirements_enforced Identifies if the required attributes for a requirements set are enforced by the product type definition schema. Non-enforced requirements enable structural validation of individual attributes without all the required attributes being present (such as for partial updates). (optional, default to 'ENFORCED')
44
+
* @param null|string $locale Locale for retrieving display labels and other presentation details. Defaults to the default language of the first marketplace in the request. (optional, default to 'DEFAULT')
Copy file name to clipboardExpand all lines: src/AmazonPHP/SellingPartner/Api/FbaInventoryApi/FBAInventorySDK.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ public function __construct(private readonly ClientInterface $client, private re
38
38
* @param string $granularity_type The granularity type for the inventory aggregation level. (required)
39
39
* @param string $granularity_id The granularity ID for the inventory aggregation level. (required)
40
40
* @param string[] $marketplace_ids The marketplace ID for the marketplace for which to return inventory summaries. (required)
41
-
* @param bool $details true to return inventory summaries with additional summarized inventory details and quantities. Otherwise, returns inventory summaries only (default value). (optional, default to false)
41
+
* @param null|bool $details true to return inventory summaries with additional summarized inventory details and quantities. Otherwise, returns inventory summaries only (default value). (optional, default to false)
42
42
* @param null|\DateTimeInterface $start_date_time A start date and time in ISO8601 format. If specified, all inventory summaries that have changed since then are returned. You must specify a date and time that is no earlier than 18 months prior to the date and time when you call the API. Note: Changes in inboundWorkingQuantity, inboundShippedQuantity and inboundReceivingQuantity are not detected. (optional)
43
43
* @param null|string[] $seller_skus A list of seller SKUs for which to return inventory summaries. You may specify up to 50 SKUs. (optional)
44
44
* @param null|string $seller_sku A single seller SKU used for querying the specified seller SKU inventory summaries. (optional)
@@ -47,7 +47,7 @@ public function __construct(private readonly ClientInterface $client, private re
0 commit comments