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
* @param ?string $breakdownType The type of charge.
19
21
* @param ?Currency $breakdownAmount A currency type and amount.
20
-
* @param ?Breakdown $breakdowns Breakdown provides details regarding the money movement under the financial transaction. Breakdowns get categorized further into breakdown types, breakdown amounts, and further breakdowns into a hierarchical structure.
22
+
* @param Breakdown[]|null $breakdowns A list of breakdowns that detail how the total amount is calculated for the transaction.
Copy file name to clipboardExpand all lines: src/Seller/FinancesV20240619/Dto/Item.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ final class Item extends Dto
24
24
* @param ?string $description Description of items in the transaction
25
25
* @param ItemRelatedIdentifier[]|null $relatedIdentifiers Related Business identifiers of the item in Transaction.
26
26
* @param ?Currency $totalAmount A currency type and amount.
27
-
* @param Breakdown[]|null $breakdowns List of breakdowns which will provide the details on how the total amount is calculated for the financial transaction.
27
+
* @param Breakdown[]|null $breakdowns A list of breakdowns that detail how the total amount is calculated for the transaction.
28
28
* @param Context[]|null $contexts List of additional Information about the item.
Copy file name to clipboardExpand all lines: src/Seller/FinancesV20240619/Dto/MarketplaceDetails.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@
15
15
finalclass MarketplaceDetails extends Dto
16
16
{
17
17
/**
18
-
* @param ?string $marketplaceId The identifier of the marketplace where the transaction was made.
18
+
* @param ?string $marketplaceId The identifier of the marketplace where the transaction occurred. The marketplace ID is the globally unique identifier of a marketplace. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
19
19
* @param ?string $marketplaceName The name of the marketplace where the transaction occurred.
* @param ?string $accountType Account type of transaction.
20
-
* @param ?string $marketplaceId Marketplace identifier of transaction.
20
+
* @param ?string $marketplaceId The identifier of the marketplace where the transaction occurred. The marketplace ID is the globally unique identifier of a marketplace. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
Copy file name to clipboardExpand all lines: src/Seller/FinancesV20240619/Dto/Transaction.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ final class Transaction extends Dto
36
36
*
37
37
* * `DEFERRED`: the transaction is currently deferred.
38
38
* * `RELEASED`: the transaction is currently released.
39
-
* * `DEFERRED_RELEASED`: the transaction was deferred in the past, but is now released. Deferred transactions will have their status updated to `DEFERRED_RELEASED` when released.
39
+
* * `DEFERRED_RELEASED`: the transaction was deferred in the past, but is now released. The status of a deferred transaction is updated to `DEFERRED_RELEASED` when the transaction is released.
40
40
* @param ?string $description Describes the reasons for the transaction.
41
41
*
42
42
* Example: 'Order Payment','Refund Order'
@@ -45,7 +45,7 @@ final class Transaction extends Dto
45
45
* @param ?MarketplaceDetails $marketplaceDetails Information about the marketplace where the transaction occurred.
46
46
* @param Item[]|null $items List of items in the transaction
47
47
* @param Context[]|null $contexts List of additional Information about the item.
48
-
* @param Breakdown[]|null $breakdowns List of breakdowns which will provide the details on how the total amount is calculated for the financial transaction.
48
+
* @param Breakdown[]|null $breakdowns A list of breakdowns that detail how the total amount is calculated for the transaction.
49
49
*/
50
50
publicfunction__construct(
51
51
public ?SellingPartnerMetadata$sellingPartnerMetadata = null,
Copy file name to clipboardExpand all lines: src/Seller/FinancesV20240619/Requests/ListTransactions.php
+11-2Lines changed: 11 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -25,15 +25,23 @@ class ListTransactions extends Request
25
25
protectedMethod$method = Method::GET;
26
26
27
27
/**
28
-
* @param \DateTimeInterface $postedAfter A date used for selecting transactions 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.
28
+
* @param \DateTimeInterface $postedAfter The response includes financial events posted on or after this date. This date must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format. The date-time must be more than two minutes before the time of the request.
29
29
* @param ?\DateTimeInterface $postedBefore A date used for selecting transactions 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 transactions are returned. You must specify the PostedAfter parameter if you specify the PostedBefore parameter. Default: Now minus two minutes.
30
-
* @param ?string $marketplaceId A string token used to select Marketplace ID.
30
+
* @param ?string $marketplaceId The identifier of the marketplace from which you want to retrieve transactions. The marketplace ID is the globally unique identifier of a marketplace. To find the ID for your marketplace, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
31
+
* @param ?string $transactionStatus The status of the transaction.
32
+
*
33
+
* **Possible values:**
34
+
*
35
+
* * `DEFERRED`: the transaction is currently deferred.
36
+
* * `RELEASED`: the transaction is currently released.
37
+
* * `DEFERRED_RELEASED`: the transaction was deferred in the past, but is now released. The status of a deferred transaction is updated to `DEFERRED_RELEASED` when the transaction is released.
31
38
* @param ?string $nextToken A string token returned in the response of your previous request.
0 commit comments