Metadata.php 771 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace Knuckles\Camel\Extraction;
  3. use Knuckles\Camel\BaseDTO;
  4. class Metadata extends BaseDTO
  5. {
  6. public ?string $groupName;
  7. public ?string $groupDescription;
  8. public ?string $subgroup;
  9. public ?string $subgroupDescription;
  10. public ?string $title;
  11. public ?string $description;
  12. public bool $authenticated = false;
  13. /**
  14. * Name of the group that this group should be placed just before.
  15. * Only used in custom endpoints, if the endpoint's `groupName` doesn't already exist.
  16. */
  17. public ?string $beforeGroup;
  18. /**
  19. * Name of the group that this group should be placed just after.
  20. * Only used in custom endpoints, if the endpoint's `groupName` doesn't already exist.
  21. */
  22. public ?string $afterGroup;
  23. }