mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-25 23:36:10 +01:00
74 lines
1.3 KiB
PHP
74 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Wrm\Events\Domain\DestinationData;
|
|
|
|
/**
|
|
* Actual request to import.
|
|
* Includes all configuration specific to a concrete import.
|
|
*/
|
|
class Import
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $restExperience;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $storagePid;
|
|
|
|
/**
|
|
* @var int|null
|
|
*/
|
|
private $regionUid;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $filesFolder;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $searchQuery;
|
|
|
|
public function __construct(
|
|
string $restExperience,
|
|
int $storagePid,
|
|
?int $regionUid,
|
|
string $filesFolder,
|
|
string $searchQuery
|
|
) {
|
|
$this->restExperience = $restExperience;
|
|
$this->storagePid = $storagePid;
|
|
$this->regionUid = $regionUid;
|
|
$this->filesFolder = $filesFolder;
|
|
$this->searchQuery = $searchQuery;
|
|
}
|
|
|
|
public function getRestExperience(): string
|
|
{
|
|
return $this->restExperience;
|
|
}
|
|
|
|
public function getStoragePid(): int
|
|
{
|
|
return $this->storagePid;
|
|
}
|
|
|
|
public function getRegionUid(): ?int
|
|
{
|
|
return $this->regionUid;
|
|
}
|
|
|
|
public function getFilesFolder(): string
|
|
{
|
|
return $this->filesFolder;
|
|
}
|
|
|
|
public function getSearchQuery(): string
|
|
{
|
|
return $this->searchQuery;
|
|
}
|
|
}
|