for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the Seams-CMS Delivery SDK package.
*
* (c) Seams-CMS.com
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SeamsCMS\Delivery\Model;
/**
* Class ContentTypeField
* @package SeamsCMS\Delivery\Model
class ContentTypeField
{
use HydratorTrait;
/** @var string */
private $name = "";
private $description = "";
private $type = "";
/** @var bool */
private $isLocalized = false;
private $isRequired = false;
* ContentTypeField constructor.
final protected function __construct()
}
* @return string
public function getName(): string
return $this->name;
public function getDescription(): string
return $this->description;
public function getType(): string
return $this->type;
* @return bool
public function isLocalized(): bool
return $this->isLocalized;
public function isRequired(): bool
return $this->isRequired;