Metadata.php 775 B

1234567891011121314151617181920212223242526272829303132
  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 $subgroup;
  8. public ?string $subgroupDescription;
  9. /**
  10. * Name of the group that this group should be placed just before.
  11. * Only used in custom endpoints, if the endpoint's `groupName` doesn't already exist.
  12. */
  13. public ?string $beforeGroup;
  14. /**
  15. * Name of the group that this group should be placed just after.
  16. * Only used in custom endpoints, if the endpoint's `groupName` doesn't already exist.
  17. */
  18. public ?string $afterGroup;
  19. public ?string $groupDescription;
  20. public ?string $title;
  21. public ?string $description;
  22. public bool $authenticated = false;
  23. }