Metadata.php 766 B

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