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/raw/seller/finances/v2024-06-19.json
+15-10Lines changed: 15 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -352,7 +352,7 @@
352
352
},
353
353
"transactionStatus": {
354
354
"type": "string",
355
-
"description": "The status for the transaction.\n\nPossible values:\n\n* Deferred *Released"
355
+
"description": "The status of the transaction.\n\n**Possible values:**\n\n* `DEFERRED`: the transaction is currently deferred.\n* `RELEASED`: the transaction is currently released.\n* `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."
356
356
},
357
357
"description": {
358
358
"type": "string",
@@ -525,7 +525,9 @@
525
525
"REFUND_ID",
526
526
"INVOICE_ID",
527
527
"DISBURSEMENT_ID",
528
-
"TRANSFER_ID"
528
+
"TRANSFER_ID",
529
+
"DEFERRED_TRANSACTION_ID",
530
+
"RELEASE_TRANSACTION_ID"
529
531
],
530
532
"x-docgen-enum-table-extension": [
531
533
{
@@ -554,7 +556,15 @@
554
556
},
555
557
{
556
558
"value": "TRANSFER_ID",
557
-
"description": "Associated TransferId of transaction"
559
+
"description": "The `TransferId` associated with the transaction."
560
+
},
561
+
{
562
+
"value": "DEFERRED_TRANSACTION_ID",
563
+
"description": "The transaction ID for the related deferred transaction"
564
+
},
565
+
{
566
+
"value": "RELEASE_TRANSACTION_ID",
567
+
"description": "The transaction ID for the related released transaction"
558
568
}
559
569
]
560
570
},
@@ -818,21 +828,16 @@
818
828
"properties": {
819
829
"deferralReason": {
820
830
"type": "string",
821
-
"description": "Deferral policy applied on the transaction.\n\nExample: 'B2B','DD7'"
831
+
"description": "The deferral policy applied to the transaction.\n\n**Examples:** `B2B` (invoiced orders), `DD7` (delivery date policy)"
822
832
},
823
833
"maturityDate": {
824
834
"$ref": "#/components/schemas/Date"
825
-
},
826
-
"deferralStatus": {
827
-
"type": "string",
828
-
"description": "Status of the transaction. \n\nExample: 'HOLD','RELEASE'"
829
835
}
830
836
},
831
837
"description": "Additional information related to Deferred transactions.",
Copy file name to clipboardExpand all lines: resources/models/seller/finances/v2024-06-19.json
+15-10Lines changed: 15 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -355,7 +355,7 @@
355
355
},
356
356
"transactionStatus": {
357
357
"type": "string",
358
-
"description": "The status for the transaction.\n\nPossible values:\n\n* Deferred *Released"
358
+
"description": "The status of the transaction.\n\n**Possible values:**\n\n* `DEFERRED`: the transaction is currently deferred.\n* `RELEASED`: the transaction is currently released.\n* `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."
359
359
},
360
360
"description": {
361
361
"type": "string",
@@ -528,7 +528,9 @@
528
528
"REFUND_ID",
529
529
"INVOICE_ID",
530
530
"DISBURSEMENT_ID",
531
-
"TRANSFER_ID"
531
+
"TRANSFER_ID",
532
+
"DEFERRED_TRANSACTION_ID",
533
+
"RELEASE_TRANSACTION_ID"
532
534
],
533
535
"x-docgen-enum-table-extension": [
534
536
{
@@ -557,7 +559,15 @@
557
559
},
558
560
{
559
561
"value": "TRANSFER_ID",
560
-
"description": "Associated TransferId of transaction"
562
+
"description": "The `TransferId` associated with the transaction."
563
+
},
564
+
{
565
+
"value": "DEFERRED_TRANSACTION_ID",
566
+
"description": "The transaction ID for the related deferred transaction"
567
+
},
568
+
{
569
+
"value": "RELEASE_TRANSACTION_ID",
570
+
"description": "The transaction ID for the related released transaction"
561
571
}
562
572
]
563
573
},
@@ -821,21 +831,16 @@
821
831
"properties": {
822
832
"deferralReason": {
823
833
"type": "string",
824
-
"description": "Deferral policy applied on the transaction.\n\nExample: 'B2B','DD7'"
834
+
"description": "The deferral policy applied to the transaction.\n\n**Examples:** `B2B` (invoiced orders), `DD7` (delivery date policy)"
825
835
},
826
836
"maturityDate": {
827
837
"$ref": "#/components/schemas/Date"
828
-
},
829
-
"deferralStatus": {
830
-
"type": "string",
831
-
"description": "Status of the transaction. \n\nExample: 'HOLD','RELEASE'"
832
838
}
833
839
},
834
840
"description": "Additional information related to Deferred transactions.",
Copy file name to clipboardExpand all lines: src/Seller/FinancesV20240619/Dto/Transaction.php
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -30,11 +30,13 @@ final class Transaction extends Dto
30
30
*
31
31
* * Shipment
32
32
* @param ?string $transactionId The unique identifier for the transaction.
33
-
* @param ?string $transactionStatus The status for the transaction.
33
+
* @param ?string $transactionStatus The status of the transaction.
34
34
*
35
-
* Possible values:
35
+
* **Possible values:**
36
36
*
37
-
* * Deferred *Released
37
+
* * `DEFERRED`: the transaction is currently deferred.
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.
38
40
* @param ?string $description Describes the reasons for the transaction.
0 commit comments