> */ public $carriersUpdate; /** * Countries. * * @var mixed[] */ public $countries; /** * Tells whether API password is set, or not. * * @var bool */ public $isApiPasswordSet; /** * Next update run. * * @var string|null */ public $nextScheduledRun; /** * Settings changed message. * * @var string|null */ public $settingsChangedMessage; /** * Translations. * * @var array */ public $translations; /** * @var bool */ public $isCzechLocale; /** * @var string|null */ public $logoZasilkovna; /** * @var string|null */ public $logoPacketa; /** * @var bool */ public $hasCarriers; /** * @var Form */ public $form; public function __construct( array $carriersUpdate, array $countries, bool $isApiPasswordSet, ?string $nextScheduledRun, ?string $settingsChangedMessage, bool $isCzechLocale, ?string $logoZasilkovna, ?string $logoPacketa, array $translations, bool $hasCarriers, Form $form ) { $this->carriersUpdate = $carriersUpdate; $this->countries = $countries; $this->isApiPasswordSet = $isApiPasswordSet; $this->nextScheduledRun = $nextScheduledRun; $this->settingsChangedMessage = $settingsChangedMessage; $this->isCzechLocale = $isCzechLocale; $this->logoZasilkovna = $logoZasilkovna; $this->logoPacketa = $logoPacketa; $this->translations = $translations; $this->hasCarriers = $hasCarriers; $this->form = $form; } }