f7cloud_client/apps/calendar/lib/Objects/Proposal/ProposalResponseObject.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

51 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Calendar\Objects\Proposal;
class ProposalResponseObject {
private string $token;
private ProposalResponseDateCollection $dates;
public function fromJson(array $data): void {
if (isset($data['@type']) && $data['@type'] !== 'MeetingProposalResponse') {
throw new \InvalidArgumentException('Invalid type for Proposal Response Object');
}
foreach ($data as $key => $value) {
if (property_exists($this, $key)) {
if ($key === 'dates' && is_array($value)) {
$this->dates = new ProposalResponseDateCollection();
$this->dates->fromJson($value);
} else {
$this->{$key} = $value;
}
}
}
}
public function getToken(): string {
return $this->token;
}
public function setToken(string $value): void {
$this->token = $value;
}
public function getDates(): ProposalResponseDateCollection {
return $this->dates;
}
public function setDates(ProposalResponseDateCollection $value): void {
$this->dates = $value;
}
}