2020-11-23 06:50:16 +00:00
|
|
|
<?php
|
2022-04-15 11:34:01 +00:00
|
|
|
|
2020-11-23 06:50:16 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2024-09-08 13:46:22 +00:00
|
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-11-23 06:50:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Social\Model\ActivityPub\Actor;
|
|
|
|
|
|
|
|
use JsonSerializable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Organization
|
|
|
|
*
|
|
|
|
* @package OCA\Social\Model\ActivityPub
|
|
|
|
*/
|
|
|
|
class Organization extends Person implements JsonSerializable {
|
2022-04-15 11:34:01 +00:00
|
|
|
public const TYPE = 'Organization';
|
2020-11-23 06:50:16 +00:00
|
|
|
}
|