['start' => new DateTime(...), 'end' => new DateTime(...)]] * @param int|null $limit - limit number of search results * @param int|null $offset - offset for paging of search results * @return array an array of events/journals/todos which are arrays of key-value-pairs. the events are sorted by start date (closest first, furthest last) * @since 13.0.0 */ public function search(string $pattern, array $searchProperties = [], array $options = [], ?int $limit = null, ?int $offset = null): array; /** * @return int build up using \OCP\Constants * @since 13.0.0 */ public function getPermissions(): int; /** * Whether the calendar is deleted * @since 26.0.0 */ public function isDeleted(): bool; }