format; } /** * Sets the export format * * @param 'ical'|'jcal'|'xcal' $format */ public function setFormat(string $format): void { $this->format = $format; } /** * Gets the start of the range to export */ public function getRangeStart(): ?string { return $this->rangeStart; } /** * Sets the start of the range to export */ public function setRangeStart(?string $rangeStart): void { $this->rangeStart = $rangeStart; } /** * Gets the number of objects to export */ public function getRangeCount(): ?int { return $this->rangeCount; } /** * Sets the number of objects to export */ public function setRangeCount(?int $rangeCount): void { $this->rangeCount = $rangeCount; } }