friendica-github/src/Object/Api/Mastodon/InstanceV2/Polls.php
2024-08-24 15:27:00 +02:00

27 lines
592 B
PHP

<?php
// Copyright (C) 2010-2024, the Friendica project
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace Friendica\Object\Api\Mastodon\InstanceV2;
use Friendica\BaseDataTransferObject;
/**
* Class Polls
*
* @see https://docs.joinmastodon.org/entities/Instance/
*/
class Polls extends BaseDataTransferObject
{
/** @var int */
protected $max_options = 0;
/** @var int */
protected $max_characters_per_option = 0;
/** @var int */
protected $min_expiration = 0;
/** @var int */
protected $max_expiration = 0;
}