From 0a862dd86bef22655d5d0b8045ca81af5b23c3ec Mon Sep 17 00:00:00 2001 From: Opheugene Date: Wed, 19 Mar 2025 17:51:25 +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 c094e1b..9edc039 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; }