123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Knuckles\Camel\Extraction;
- use Knuckles\Camel\BaseDTO;
- class Metadata extends BaseDTO
- {
- public ?string $groupName;
- public ?string $subgroup;
- /**
- * Name of the group that this group should be placed just before.
- * Only used in custom endpoints, if the endpoint's `groupName` doesn't already exist.
- */
- public ?string $beforeGroup;
- /**
- * Name of the group that this group should be placed just after.
- * Only used in custom endpoints, if the endpoint's `groupName` doesn't already exist.
- */
- public ?string $afterGroup;
- public ?string $groupDescription;
- public ?string $title;
- public ?string $description;
- public bool $authenticated = false;
- public array $custom = [];
- }
|