bus = false; } public function getId(): ?int { return $this->id; } public function getBusProId(): ?int { return $this->busProId; } public function setBusProId(int $busProId): static { $this->busProId = $busProId; return $this; } public function getDateFrom(): ?\DateTimeImmutable { return $this->dateFrom; } public function setDateFrom(\DateTimeImmutable $dateFrom): static { $this->dateFrom = $dateFrom; return $this; } public function getDateTo(): ?\DateTimeImmutable { return $this->dateTo; } public function setDateTo(\DateTimeImmutable $dateTo): static { $this->dateTo = $dateTo; return $this; } public function isBus(): ?bool { return $this->bus; } public function setBus(bool $bus): static { $this->bus = $bus; return $this; } public function getCode(): ?string { return $this->code; } public function setCode(string $code): static { $this->code = $code; return $this; } public function getProduct(): ?string { return $this->product; } public function setProduct(string $product): static { $this->product = $product; return $this; } public function getHotel(): ?string { return $this->hotel; } public function setHotel(string $hotel): static { $this->hotel = $hotel; return $this; } public function getHotelCode(): ?string { return $this->hotelCode; } public function setHotelCode(?string $hotelCode): static { $this->hotelCode = $hotelCode; return $this; } public function getHotelBusProId(): ?int { return $this->hotelBusProId; } public function setHotelBusProId(?int $hotelBusProId): static { $this->hotelBusProId = $hotelBusProId; return $this; } public function getPickups(): array { return $this->pickups; } public function setPickups(array $pickups): static { $this->pickups = $pickups; return $this; } }