From 1a5c2dd778e5b908b4a1df3b903bdaeab872d903 Mon Sep 17 00:00:00 2001 From: Opheugene Date: Wed, 19 Mar 2025 17:41:26 +0100 Subject: [PATCH] Added site field to ProductOffer --- src/Model/Entity/Store/ProductOffer.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Model/Entity/Store/ProductOffer.php b/src/Model/Entity/Store/ProductOffer.php index c094e1b3b..9edc03945 100644 --- a/src/Model/Entity/Store/ProductOffer.php +++ b/src/Model/Entity/Store/ProductOffer.php @@ -170,4 +170,12 @@ class ProductOffer * @JMS\SerializedName("barcode") */ public $barcode; + + /** + * @var string + * + * @JMS\Type("string") + * @JMS\SerializedName("site") + */ + public $site; }