appwrite/src/Appwrite/Utopia/Response/Model/Any.php

35 lines
492 B
PHP
Raw Normal View History

<?php
namespace Appwrite\Utopia\Response\Model;
use Appwrite\Utopia\Response;
use Appwrite\Utopia\Response\Model;
class Any extends Model
{
/**
* @var bool
*/
2022-08-01 10:22:04 +00:00
protected bool $any = true;
/**
* Get Name
*
* @return string
*/
2022-05-23 14:54:50 +00:00
public function getName(): string
{
return 'Any';
}
/**
2021-12-15 10:19:29 +00:00
* Get Type
*
* @return string
*/
2022-05-23 14:54:50 +00:00
public function getType(): string
{
return Response::MODEL_ANY;
}
}