0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-07 09:59:46 +00:00
nextcloud_server/lib/private/Calendar/AvailabilityResult.php
Richard Steinmetz 3dbdf3266c
feat(ocp): add calendar api to retrieve availability of attendees
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
2025-01-13 10:12:31 +01:00

28 lines
542 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Calendar;
use OCP\Calendar\IAvailabilityResult;
class AvailabilityResult implements IAvailabilityResult {
public function __construct(
private readonly string $attendee,
private readonly bool $available,
) {
}
public function getAttendeeEmail(): string {
return $this->attendee;
}
public function isAvailable(): bool {
return $this->available;
}
}