From 4c35679e4eb4b0f2e284eb9630c191378b9b2273 Mon Sep 17 00:00:00 2001 From: phodoval <9001218+phodoval@users.noreply.github.com> Date: Fri, 10 Jul 2026 09:00:30 +0200 Subject: [PATCH] [create-pull-request] automated change --- src/Component/Entity/Product/Images/Item.php | 12 ++++++++++++ .../Data/Images/Item.php | 12 ++++++++++++ .../Data/Images/Item.php | 12 ++++++++++++ 3 files changed, 36 insertions(+) diff --git a/src/Component/Entity/Product/Images/Item.php b/src/Component/Entity/Product/Images/Item.php index 4f020a6f..83aac06f 100644 --- a/src/Component/Entity/Product/Images/Item.php +++ b/src/Component/Entity/Product/Images/Item.php @@ -14,6 +14,7 @@ class Item extends Entity protected ?string $description; protected TypeDateTimeNullable $changeTime; protected ?bool $isMainImage; + protected string $gallery; public function getName(): string { @@ -91,4 +92,15 @@ public function setIsMainImage(?bool $isMainImage): static $this->isMainImage = $isMainImage; return $this; } + + public function getGallery(): string + { + return $this->gallery; + } + + public function setGallery(string $gallery): static + { + $this->gallery = $gallery; + return $this; + } } diff --git a/src/Endpoint/ProductImages/GetListOfProductImagesResponse/GetListOfProductImagesResponse/Data/Images/Item.php b/src/Endpoint/ProductImages/GetListOfProductImagesResponse/GetListOfProductImagesResponse/Data/Images/Item.php index f814a382..6b6673c8 100644 --- a/src/Endpoint/ProductImages/GetListOfProductImagesResponse/GetListOfProductImagesResponse/Data/Images/Item.php +++ b/src/Endpoint/ProductImages/GetListOfProductImagesResponse/GetListOfProductImagesResponse/Data/Images/Item.php @@ -14,6 +14,7 @@ class Item extends Entity protected string $seoName; protected string $cdnName; protected bool $isMainImage; + protected string $gallery; public function getName(): string { @@ -91,4 +92,15 @@ public function setIsMainImage(bool $isMainImage): static $this->isMainImage = $isMainImage; return $this; } + + public function getGallery(): string + { + return $this->gallery; + } + + public function setGallery(string $gallery): static + { + $this->gallery = $gallery; + return $this; + } } diff --git a/src/Endpoint/ProductImages/GetProductImagesUpdateResponse/GetProductImagesUpdateResponse/Data/Images/Item.php b/src/Endpoint/ProductImages/GetProductImagesUpdateResponse/GetProductImagesUpdateResponse/Data/Images/Item.php index 1f732663..f010ef40 100644 --- a/src/Endpoint/ProductImages/GetProductImagesUpdateResponse/GetProductImagesUpdateResponse/Data/Images/Item.php +++ b/src/Endpoint/ProductImages/GetProductImagesUpdateResponse/GetProductImagesUpdateResponse/Data/Images/Item.php @@ -14,6 +14,7 @@ class Item extends Entity protected string $seoName; protected string $cdnName; protected bool $isMainImage; + protected string $gallery; public function getName(): string { @@ -91,4 +92,15 @@ public function setIsMainImage(bool $isMainImage): static $this->isMainImage = $isMainImage; return $this; } + + public function getGallery(): string + { + return $this->gallery; + } + + public function setGallery(string $gallery): static + { + $this->gallery = $gallery; + return $this; + } }