From 08a1b1ac8ac88f59be6375c61b63d5dbea300e43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Fr=C3=A9reault?= Date: Wed, 29 Nov 2023 17:50:00 -0500 Subject: [PATCH] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed listing type in example of Listing class Signed-off-by: Jérémie Fréreault --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 772c0cb..3de7b57 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Using the Listing Class use Shopiro\Listing; // Create a listing -$response = Listing::create('type', ['data']); +$response = Listing::create('marketplace_low_volume', ['data']); // Retrieve multiple listings $allListings = Listing::getAll(10, 0);