diff --git a/src/Enum/Payments/PaymentObjectType.php b/src/Enum/Payments/PaymentObjectType.php new file mode 100644 index 0000000..e61fcfc --- /dev/null +++ b/src/Enum/Payments/PaymentObjectType.php @@ -0,0 +1,23 @@ +popular = true; * $productInput->recommended = true; * $productInput->stock = true; + * $productInput->type = 'product'; * $productEditGroupInput = new ProductEditGroupInput(); * $productEditGroupInput->externalId = 'testExternalId'; * $productEditGroupInput->id = 10; diff --git a/tests/src/ResourceGroup/StoreTest.php b/tests/src/ResourceGroup/StoreTest.php index a77ed4b..ee1aba1 100644 --- a/tests/src/ResourceGroup/StoreTest.php +++ b/tests/src/ResourceGroup/StoreTest.php @@ -375,6 +375,7 @@ EOF; "maxPrice": 624, "id": 828272, "article": "38311", + "type": "product", "name": "Test Product", "url": "https://example.com", "imageUrl": "https://example.com/image.jpg", @@ -699,6 +700,7 @@ EOF; $productInput->popular = true; $productInput->recommended = true; $productInput->stock = true; + $productInput->type = 'product'; $productEditGroupInput = new ProductEditGroupInput(); $productEditGroupInput->id = 9717;