* @link https://getkirby.com * @copyright Bastian Allgeier * @license https://getkirby.com/license */ class StructureUuid extends FieldUuid { protected const TYPE = 'struct'; protected const FIELD = 'structure'; /** * @var \Kirby\Cms\StructureObject|null */ public Identifiable|null $model = null; /** * Converts content field to a Structure collection * @internal */ public static function fieldToCollection(Field $field): Structure { return $field->toStructure(); } }