Ebooks = $ebooks; $this->IsCrawlable = $isCrawlable; } public function Save(string $path): void{ $updatedTimestamp = gmdate('Y-m-d\TH:i:s\Z'); $feed = Template::OpdsAcquisitionFeed(['id' => $this->Id, 'url' => $this->Url, 'title' => $this->Title, 'parentUrl' => $this->ParentUrl, 'updatedTimestamp' => $updatedTimestamp, 'isCrawlable' => $this->IsCrawlable, 'entries' => $this->Ebooks]); $this->SaveIfChanged($path, $feed, $updatedTimestamp); } }