Metadata.php 704 B

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