User.php 246 B

123456789101112131415161718192021
  1. <?php
  2. namespace OpenApi\LinkExample;
  3. /**
  4. * @OA\Schema(schema="user")
  5. */
  6. class User
  7. {
  8. /**
  9. * @OA\Property()
  10. * @var string
  11. */
  12. public $username;
  13. /**
  14. * @OA\Property()
  15. * @var string
  16. */
  17. public $uuid;
  18. }