ApiResponse.php 314 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace PetstoreIO;
  3. /**
  4. * @OA\Schema()
  5. */
  6. class ApiResponse
  7. {
  8. /**
  9. * @OA\Property(format="int32")
  10. * @var int
  11. */
  12. public $code;
  13. /**
  14. * @OA\Property
  15. * @var string
  16. */
  17. public $type;
  18. /**
  19. * @OA\Property
  20. * @var string
  21. */
  22. public $message;
  23. }