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; + } }