vendor/shopware/core/Content/ProductExport/ScheduledTask/ProductExportPartialGeneration.php line 8

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Content\ProductExport\ScheduledTask;
  3. use Shopware\Core\Framework\Log\Package;
  4. #[Package('inventory')]
  5. class ProductExportPartialGeneration
  6. {
  7.     /**
  8.      * @var int
  9.      */
  10.     private $offset;
  11.     /**
  12.      * @var string
  13.      */
  14.     private $productExportId;
  15.     /**
  16.      * @var string
  17.      */
  18.     private $salesChannelId;
  19.     /**
  20.      * @internal
  21.      */
  22.     public function __construct(string $productExportIdstring $salesChannelIdint $offset 0)
  23.     {
  24.         $this->offset $offset;
  25.         $this->productExportId $productExportId;
  26.         $this->salesChannelId $salesChannelId;
  27.     }
  28.     public function getOffset(): int
  29.     {
  30.         return $this->offset;
  31.     }
  32.     public function getProductExportId(): string
  33.     {
  34.         return $this->productExportId;
  35.     }
  36.     public function getSalesChannelId(): string
  37.     {
  38.         return $this->salesChannelId;
  39.     }
  40. }